Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

CapacityCheckPerMetroList.md

File metadata and controls

30 lines (21 loc) · 1.13 KB

CapacityCheckPerMetroList

Properties

Name Type Description Notes
href str [optional]
servers List[CapacityCheckPerMetroInfo] [optional]

Example

from equinix_metal.models.capacity_check_per_metro_list import CapacityCheckPerMetroList

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

# convert the object into a dict
capacity_check_per_metro_list_dict = capacity_check_per_metro_list_instance.to_dict()
# create an instance of CapacityCheckPerMetroList from a dict
capacity_check_per_metro_list_form_dict = capacity_check_per_metro_list.from_dict(capacity_check_per_metro_list_dict)

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