| Name | Type | Description | Notes |
|---|---|---|---|
| next_after_user_id | str | ||
| next_after_name | str | ||
| total_count | float | ||
| anon_count | float | ||
| users | List[PageUserEntry] | ||
| status | APIStatus |
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)