| Name |
Type |
Description |
Notes |
| name |
str |
|
[optional] |
from hyperstack.models.instance_image_fields import InstanceImageFields
# TODO update the JSON string below
json = "{}"
# create an instance of InstanceImageFields from a JSON string
instance_image_fields_instance = InstanceImageFields.from_json(json)
# print the JSON string representation of the object
print(InstanceImageFields.to_json())
# convert the object into a dict
instance_image_fields_dict = instance_image_fields_instance.to_dict()
# create an instance of InstanceImageFields from a dict
instance_image_fields_from_dict = InstanceImageFields.from_dict(instance_image_fields_dict)
[Back to Model list] [Back to API list] [Back to README]