Skip to content

PageSummary

Properties

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

Example

python
from syntheticusers.models.page_summary import PageSummary

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

# convert the object into a dict
page_summary_dict = page_summary_instance.to_dict()
# create an instance of PageSummary from a dict
page_summary_from_dict = PageSummary.from_dict(page_summary_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.