Skip to content

PageProblem

Properties

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

Example

python
from syntheticusers.models.page_problem import PageProblem

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

# convert the object into a dict
page_problem_dict = page_problem_instance.to_dict()
# create an instance of PageProblem from a dict
page_problem_from_dict = PageProblem.from_dict(page_problem_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.