| Name | Type | Description | Notes |
|---|---|---|---|
| flavors | List[FlavorFields] | [optional] | |
| gpu | str | [optional] | |
| region_name | str | [optional] |
from hyperstack.models.flavor_item_get_response import FlavorItemGetResponse
# TODO update the JSON string below
json = "{}"
# create an instance of FlavorItemGetResponse from a JSON string
flavor_item_get_response_instance = FlavorItemGetResponse.from_json(json)
# print the JSON string representation of the object
print(FlavorItemGetResponse.to_json())
# convert the object into a dict
flavor_item_get_response_dict = flavor_item_get_response_instance.to_dict()
# create an instance of FlavorItemGetResponse from a dict
flavor_item_get_response_from_dict = FlavorItemGetResponse.from_dict(flavor_item_get_response_dict)