Name | Type | Description | Notes |
---|---|---|---|
device | str | [optional] | |
format | str | [optional] | |
href | str | [optional] | |
options | List[str] | [optional] | |
point | str | [optional] |
from equinix_metal.models.mount import Mount
# TODO update the JSON string below
json = "{}"
# create an instance of Mount from a JSON string
mount_instance = Mount.from_json(json)
# print the JSON string representation of the object
print(Mount.to_json())
# convert the object into a dict
mount_dict = mount_instance.to_dict()
# create an instance of Mount from a dict
mount_form_dict = mount.from_dict(mount_dict)