Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.24 KB

File metadata and controls

32 lines (23 loc) · 1.24 KB

InternalVolumeAttachmentFields

Properties

Name Type Description Notes
created_at datetime [optional]
device str [optional]
status str [optional]
volume InternalVolumeFields [optional]

Example

from hyperstack.models.internal_volume_attachment_fields import InternalVolumeAttachmentFields

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

# convert the object into a dict
internal_volume_attachment_fields_dict = internal_volume_attachment_fields_instance.to_dict()
# create an instance of InternalVolumeAttachmentFields from a dict
internal_volume_attachment_fields_from_dict = InternalVolumeAttachmentFields.from_dict(internal_volume_attachment_fields_dict)

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