Skip to content

PageInterview

Properties

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

Example

python
from syntheticusers.models.page_interview import PageInterview

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

# convert the object into a dict
page_interview_dict = page_interview_instance.to_dict()
# create an instance of PageInterview from a dict
page_interview_from_dict = PageInterview.from_dict(page_interview_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.