Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.07 KB

File metadata and controls

29 lines (20 loc) · 1.07 KB

UpdateVolumeAttachmentPayload

Properties

Name Type Description Notes
protected bool [optional]

Example

from hyperstack.models.update_volume_attachment_payload import UpdateVolumeAttachmentPayload

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

# convert the object into a dict
update_volume_attachment_payload_dict = update_volume_attachment_payload_instance.to_dict()
# create an instance of UpdateVolumeAttachmentPayload from a dict
update_volume_attachment_payload_from_dict = UpdateVolumeAttachmentPayload.from_dict(update_volume_attachment_payload_dict)

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