Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.02 KB

File metadata and controls

30 lines (22 loc) · 1.02 KB

RouterStatistic

Properties

Name Type Description Notes
name object Имя метрики
list object Значения метрики
meta RouterStatisticMeta

Example

from timeweb_cloud_api.models.router_statistic import RouterStatistic

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

# convert the object into a dict
router_statistic_dict = router_statistic_instance.to_dict()
# create an instance of RouterStatistic from a dict
router_statistic_form_dict = router_statistic.from_dict(router_statistic_dict)

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