Skip to content

PageStudy

Properties

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

Example

python
from syntheticusers.models.page_study import PageStudy

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

# convert the object into a dict
page_study_dict = page_study_instance.to_dict()
# create an instance of PageStudy from a dict
page_study_from_dict = PageStudy.from_dict(page_study_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.