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