Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 981 Bytes

File metadata and controls

29 lines (20 loc) · 981 Bytes

DetachVolumesPayload

Properties

Name Type Description Notes
volume_ids List[int] [optional]

Example

from hyperstack.models.detach_volumes_payload import DetachVolumesPayload

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

# convert the object into a dict
detach_volumes_payload_dict = detach_volumes_payload_instance.to_dict()
# create an instance of DetachVolumesPayload from a dict
detach_volumes_payload_from_dict = DetachVolumesPayload.from_dict(detach_volumes_payload_dict)

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