Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 882 Bytes

Volume.md

File metadata and controls

31 lines (22 loc) · 882 Bytes

Volume

Properties

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

Example

from hyperstack.models.volume import Volume

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

# convert the object into a dict
volume_dict = volume_instance.to_dict()
# create an instance of Volume from a dict
volume_form_dict = volume.from_dict(volume_dict)

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