Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 903 Bytes

File metadata and controls

31 lines (22 loc) · 903 Bytes

Volumes

Properties

Name Type Description Notes
status bool [optional]
message str [optional]
volumes List[VolumeFields] [optional]

Example

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_form_dict = volumes.from_dict(volumes_dict)

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