Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.18 KB

File metadata and controls

33 lines (24 loc) · 1.18 KB

AttachmentsFieldsForVolume

Properties

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

Example

from hyperstack.models.attachments_fields_for_volume import AttachmentsFieldsForVolume

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

# convert the object into a dict
attachments_fields_for_volume_dict = attachments_fields_for_volume_instance.to_dict()
# create an instance of AttachmentsFieldsForVolume from a dict
attachments_fields_for_volume_from_dict = AttachmentsFieldsForVolume.from_dict(attachments_fields_for_volume_dict)

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