Skip to content

PageWorkspace

Properties

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

Example

python
from syntheticusers.models.page_workspace import PageWorkspace

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

# convert the object into a dict
page_workspace_dict = page_workspace_instance.to_dict()
# create an instance of PageWorkspace from a dict
page_workspace_from_dict = PageWorkspace.from_dict(page_workspace_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.