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