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