Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 924 Bytes

DeviceProjectLite.md

File metadata and controls

29 lines (20 loc) · 924 Bytes

DeviceProjectLite

Properties

Name Type Description Notes
href str

Example

from equinix_metal.models.device_project_lite import DeviceProjectLite

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

# convert the object into a dict
device_project_lite_dict = device_project_lite_instance.to_dict()
# create an instance of DeviceProjectLite from a dict
device_project_lite_form_dict = device_project_lite.from_dict(device_project_lite_dict)

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