Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.05 KB

NodeInfoUsage.md

File metadata and controls

32 lines (23 loc) · 1.05 KB

NodeInfoUsage

NodeInfoUsage contains usage statistics for this server

Properties

Name Type Description Notes
local_comments int [optional]
local_posts int [optional]
users NodeInfoUsageUsers [optional]

Example

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)

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