Skip to content

PageStandaloneReport

Properties

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

[Back to API list] [Back to SDK]

Released under the MIT License.