Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Latest commit

 

History

History
31 lines (22 loc) · 1020 Bytes

DeviceActionsInner.md

File metadata and controls

31 lines (22 loc) · 1020 Bytes

DeviceActionsInner

Properties

Name Type Description Notes
href str [optional]
name str [optional]
type str [optional]

Example

from equinix_metal.models.device_actions_inner import DeviceActionsInner

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

# convert the object into a dict
device_actions_inner_dict = device_actions_inner_instance.to_dict()
# create an instance of DeviceActionsInner from a dict
device_actions_inner_form_dict = device_actions_inner.from_dict(device_actions_inner_dict)

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