Name | Type | Description | Notes |
---|---|---|---|
devices | List[Device] | [optional] | |
href | str | [optional] | |
meta | Meta | [optional] |
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)