Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.2 KB

File metadata and controls

34 lines (25 loc) · 1.2 KB

PageUsersOnlineResponse

Properties

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

Example

from client.models.page_users_online_response import PageUsersOnlineResponse

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

# convert the object into a dict
page_users_online_response_dict = page_users_online_response_instance.to_dict()
# create an instance of PageUsersOnlineResponse from a dict
page_users_online_response_from_dict = PageUsersOnlineResponse.from_dict(page_users_online_response_dict)

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