Appearance
PageWorkspace
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| items | List[Workspace] | ||
| total | int | ||
| page | int | ||
| size | int | ||
| pages | int | [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)