Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 988 Bytes

File metadata and controls

28 lines (20 loc) · 988 Bytes

RouterStatisticMeta

Properties

Name Type Description Notes
amount object Количество точек

Example

from timeweb_cloud_api.models.router_statistic_meta import RouterStatisticMeta

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

# convert the object into a dict
router_statistic_meta_dict = router_statistic_meta_instance.to_dict()
# create an instance of RouterStatisticMeta from a dict
router_statistic_meta_form_dict = router_statistic_meta.from_dict(router_statistic_meta_dict)

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