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