Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.09 KB

File metadata and controls

33 lines (24 loc) · 1.09 KB

AttachVolumeFields

Properties

Name Type Description Notes
id int [optional]
instance_id int [optional]
volume_id int [optional]
status str [optional]
created_at datetime [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_form_dict = attach_volume_fields.from_dict(attach_volume_fields_dict)

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