Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

AttachVolumesPayload

Properties

Name Type Description Notes
protected bool [optional] [default to False]
volume_ids List[int] [optional]

Example

from hyperstack.models.attach_volumes_payload import AttachVolumesPayload

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

# convert the object into a dict
attach_volumes_payload_dict = attach_volumes_payload_instance.to_dict()
# create an instance of AttachVolumesPayload from a dict
attach_volumes_payload_from_dict = AttachVolumesPayload.from_dict(attach_volumes_payload_dict)

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