ServersStatisticsMeta
| Name |
Type |
Description |
Notes |
| amount |
object |
Число элементов в результате |
|
from timeweb_cloud_api.models.servers_statistics_meta import ServersStatisticsMeta
# TODO update the JSON string below
json = "{}"
# create an instance of ServersStatisticsMeta from a JSON string
servers_statistics_meta_instance = ServersStatisticsMeta.from_json(json)
# print the JSON string representation of the object
print ServersStatisticsMeta.to_json()
# convert the object into a dict
servers_statistics_meta_dict = servers_statistics_meta_instance.to_dict()
# create an instance of ServersStatisticsMeta from a dict
servers_statistics_meta_form_dict = servers_statistics_meta.from_dict(servers_statistics_meta_dict)
[Back to Model list] [Back to API list] [Back to README]