Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 979 Bytes

DeviceUsageList.md

File metadata and controls

30 lines (21 loc) · 979 Bytes

DeviceUsageList

Properties

Name Type Description Notes
href str [optional]
usages List[DeviceUsage] [optional]

Example

from equinix_metal.models.device_usage_list import DeviceUsageList

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

# convert the object into a dict
device_usage_list_dict = device_usage_list_instance.to_dict()
# create an instance of DeviceUsageList from a dict
device_usage_list_form_dict = device_usage_list.from_dict(device_usage_list_dict)

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