Skip to content

PagePlan

Properties

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

Example

python
from syntheticusers.models.page_plan import PagePlan

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

# convert the object into a dict
page_plan_dict = page_plan_instance.to_dict()
# create an instance of PagePlan from a dict
page_plan_from_dict = PagePlan.from_dict(page_plan_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.