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