| Name | Type | Description | Notes |
|---|---|---|---|
| message | str | [optional] | |
| status | bool | [optional] | |
| volume_attachments | List[AttachVolumeFields] | [optional] |
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)