Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.09 KB

NodeInfoUsageUsers.md

File metadata and controls

32 lines (23 loc) · 1.09 KB

NodeInfoUsageUsers

NodeInfoUsageUsers contains statistics about the users of this server

Properties

Name Type Description Notes
active_halfyear int [optional]
active_month int [optional]
total int [optional]

Example

from clientapi_forgejo.models.node_info_usage_users import NodeInfoUsageUsers

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

# convert the object into a dict
node_info_usage_users_dict = node_info_usage_users_instance.to_dict()
# create an instance of NodeInfoUsageUsers from a dict
node_info_usage_users_from_dict = NodeInfoUsageUsers.from_dict(node_info_usage_users_dict)

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