Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 946 Bytes

DeviceList.md

File metadata and controls

31 lines (22 loc) · 946 Bytes

DeviceList

Properties

Name Type Description Notes
devices List[Device] [optional]
href str [optional]
meta Meta [optional]

Example

from equinix_metal.models.device_list import DeviceList

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

# convert the object into a dict
device_list_dict = device_list_instance.to_dict()
# create an instance of DeviceList from a dict
device_list_form_dict = device_list.from_dict(device_list_dict)

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