NodeInfoUsageUsers contains statistics about the users of this server
Name | Type | Description | Notes |
---|---|---|---|
active_halfyear | int | [optional] | |
active_month | int | [optional] | |
total | int | [optional] |
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)