| Name | Type | Description | Notes |
|---|---|---|---|
| message | str | [optional] | |
| status | bool | [optional] | |
| volume_attachments | List[AttachVolumeFields] | [optional] |
from hyperstack.models.detach_volumes import DetachVolumes
# TODO update the JSON string below
json = "{}"
# create an instance of DetachVolumes from a JSON string
detach_volumes_instance = DetachVolumes.from_json(json)
# print the JSON string representation of the object
print(DetachVolumes.to_json())
# convert the object into a dict
detach_volumes_dict = detach_volumes_instance.to_dict()
# create an instance of DetachVolumes from a dict
detach_volumes_from_dict = DetachVolumes.from_dict(detach_volumes_dict)