Appearance
PageSubPlan
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| items | List[SubPlan] | ||
| total | int | ||
| page | int | ||
| size | int | ||
| pages | int | [optional] |
Example
python
from syntheticusers.models.page_sub_plan import PageSubPlan
# TODO update the JSON string below
json = "{}"
# create an instance of PageSubPlan from a JSON string
page_sub_plan_instance = PageSubPlan.from_json(json)
# print the JSON string representation of the object
print(PageSubPlan.to_json())
# convert the object into a dict
page_sub_plan_dict = page_sub_plan_instance.to_dict()
# create an instance of PageSubPlan from a dict
page_sub_plan_from_dict = PageSubPlan.from_dict(page_sub_plan_dict)