| Name | Type | Description | Notes |
|---|---|---|---|
| count | int | [optional] | |
| message | str | [optional] | |
| page | int | [optional] | |
| page_size | int | [optional] | |
| status | bool | [optional] | |
| volumes | List[VolumesFields] | [optional] |
from hyperstack.models.volumes import Volumes
# TODO update the JSON string below
json = "{}"
# create an instance of Volumes from a JSON string
volumes_instance = Volumes.from_json(json)
# print the JSON string representation of the object
print(Volumes.to_json())
# convert the object into a dict
volumes_dict = volumes_instance.to_dict()
# create an instance of Volumes from a dict
volumes_from_dict = Volumes.from_dict(volumes_dict)