Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.15 KB

File metadata and controls

32 lines (23 loc) · 1.15 KB

PageUsersOfflineResponse

Properties

Name Type Description Notes
next_after_user_id str
next_after_name str
users List[PageUserEntry]
status APIStatus

Example

from client.models.page_users_offline_response import PageUsersOfflineResponse

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

# convert the object into a dict
page_users_offline_response_dict = page_users_offline_response_instance.to_dict()
# create an instance of PageUsersOfflineResponse from a dict
page_users_offline_response_from_dict = PageUsersOfflineResponse.from_dict(page_users_offline_response_dict)

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