Skip to content

PageSolution

Properties

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

Example

python
from syntheticusers.models.page_solution import PageSolution

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

# convert the object into a dict
page_solution_dict = page_solution_instance.to_dict()
# create an instance of PageSolution from a dict
page_solution_from_dict = PageSolution.from_dict(page_solution_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.