| Name | Type | Description | Notes |
|---|---|---|---|
| data | List[FlavorItemGetResponse] | [optional] | |
| message | str | [optional] | |
| status | bool | [optional] |
from hyperstack.models.flavor_list_response import FlavorListResponse
# TODO update the JSON string below
json = "{}"
# create an instance of FlavorListResponse from a JSON string
flavor_list_response_instance = FlavorListResponse.from_json(json)
# print the JSON string representation of the object
print(FlavorListResponse.to_json())
# convert the object into a dict
flavor_list_response_dict = flavor_list_response_instance.to_dict()
# create an instance of FlavorListResponse from a dict
flavor_list_response_from_dict = FlavorListResponse.from_dict(flavor_list_response_dict)