Skip to content

PageUser

Properties

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

Example

python
from syntheticusers.models.page_user import PageUser

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

# convert the object into a dict
page_user_dict = page_user_instance.to_dict()
# create an instance of PageUser from a dict
page_user_from_dict = PageUser.from_dict(page_user_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.