Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 938 Bytes

File metadata and controls

31 lines (22 loc) · 938 Bytes

VolumeTypes

Properties

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

Example

from hyperstack.models.volume_types import VolumeTypes

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

# convert the object into a dict
volume_types_dict = volume_types_instance.to_dict()
# create an instance of VolumeTypes from a dict
volume_types_from_dict = VolumeTypes.from_dict(volume_types_dict)

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