Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.16 KB

File metadata and controls

35 lines (26 loc) · 1.16 KB

AttachVolumeFields

Properties

Name Type Description Notes
created_at datetime [optional]
device str [optional]
id int [optional]
instance_id int [optional]
protected bool [optional]
status str [optional]
volume_id int [optional]

Example

from hyperstack.models.attach_volume_fields import AttachVolumeFields

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

# convert the object into a dict
attach_volume_fields_dict = attach_volume_fields_instance.to_dict()
# create an instance of AttachVolumeFields from a dict
attach_volume_fields_from_dict = AttachVolumeFields.from_dict(attach_volume_fields_dict)

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