Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.06 KB

File metadata and controls

30 lines (22 loc) · 1.06 KB

ServersStatistics

Properties

Name Type Description Notes
name object Имя статистики. [optional]
list object [optional]
meta ServersStatisticsMeta [optional]

Example

from timeweb_cloud_api.models.servers_statistics import ServersStatistics

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

# convert the object into a dict
servers_statistics_dict = servers_statistics_instance.to_dict()
# create an instance of ServersStatistics from a dict
servers_statistics_form_dict = servers_statistics.from_dict(servers_statistics_dict)

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