Skip to content

PageSubPlan

Properties

NameTypeDescriptionNotes
itemsList[SubPlan]
totalint
pageint
sizeint
pagesint[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)

[Back to API list] [Back to SDK]

Released under the MIT License.