Skip to content

PageSuggestion

Properties

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

Example

python
from syntheticusers.models.page_suggestion import PageSuggestion

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

# convert the object into a dict
page_suggestion_dict = page_suggestion_instance.to_dict()
# create an instance of PageSuggestion from a dict
page_suggestion_from_dict = PageSuggestion.from_dict(page_suggestion_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.