NodeInfoUsage contains usage statistics for this server
Name | Type | Description | Notes |
---|---|---|---|
local_comments | int | [optional] | |
local_posts | int | [optional] | |
users | NodeInfoUsageUsers | [optional] |
from clientapi_forgejo.models.node_info_usage import NodeInfoUsage
# TODO update the JSON string below
json = "{}"
# create an instance of NodeInfoUsage from a JSON string
node_info_usage_instance = NodeInfoUsage.from_json(json)
# print the JSON string representation of the object
print(NodeInfoUsage.to_json())
# convert the object into a dict
node_info_usage_dict = node_info_usage_instance.to_dict()
# create an instance of NodeInfoUsage from a dict
node_info_usage_from_dict = NodeInfoUsage.from_dict(node_info_usage_dict)