Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1010 Bytes

File metadata and controls

31 lines (22 loc) · 1010 Bytes

AttachVolumes

Properties

Name Type Description Notes
message str [optional]
status bool [optional]
volume_attachments List[AttachVolumeFields] [optional]

Example

from hyperstack.models.attach_volumes import AttachVolumes

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

# convert the object into a dict
attach_volumes_dict = attach_volumes_instance.to_dict()
# create an instance of AttachVolumes from a dict
attach_volumes_from_dict = AttachVolumes.from_dict(attach_volumes_dict)

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