| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] |
| name |
str |
|
[optional] |
| region_name |
str |
|
[optional] |
| type |
str |
|
[optional] |
| version |
str |
|
[optional] |
| size |
int |
|
[optional] |
| display_size |
str |
|
[optional] |
from hyperstack.models.image_fields import ImageFields
# TODO update the JSON string below
json = "{}"
# create an instance of ImageFields from a JSON string
image_fields_instance = ImageFields.from_json(json)
# print the JSON string representation of the object
print ImageFields.to_json()
# convert the object into a dict
image_fields_dict = image_fields_instance.to_dict()
# create an instance of ImageFields from a dict
image_fields_form_dict = image_fields.from_dict(image_fields_dict)
[Back to Model list] [Back to API list] [Back to README]