Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

PageUsersInfoResponse

Properties

Name Type Description Notes
users List[PageUserEntry]
status APIStatus

Example

from client.models.page_users_info_response import PageUsersInfoResponse

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

# convert the object into a dict
page_users_info_response_dict = page_users_info_response_instance.to_dict()
# create an instance of PageUsersInfoResponse from a dict
page_users_info_response_from_dict = PageUsersInfoResponse.from_dict(page_users_info_response_dict)

[Back to Model list] [Back to API list] [Back to README]