Skip to content

PageProject

Properties

NameTypeDescriptionNotes
itemsList[Project]
totalint
pageint
sizeint
pagesint[optional]

Example

python
from syntheticusers.models.page_project import PageProject

# TODO update the JSON string below
json = "{}"
# create an instance of PageProject from a JSON string
page_project_instance = PageProject.from_json(json)
# print the JSON string representation of the object
print(PageProject.to_json())

# convert the object into a dict
page_project_dict = page_project_instance.to_dict()
# create an instance of PageProject from a dict
page_project_from_dict = PageProject.from_dict(page_project_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.