Skip to content

PageSyntheticUser

Properties

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

Example

python
from syntheticusers.models.page_synthetic_user import PageSyntheticUser

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

# convert the object into a dict
page_synthetic_user_dict = page_synthetic_user_instance.to_dict()
# create an instance of PageSyntheticUser from a dict
page_synthetic_user_from_dict = PageSyntheticUser.from_dict(page_synthetic_user_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.