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