Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

FlavorItemGetResponse

Properties

Name Type Description Notes
flavors List[FlavorFields] [optional]
gpu str [optional]
region_name str [optional]

Example

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)

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