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

MasterFlavorsResponse

Properties

Name Type Description Notes
flavors List[ClusterFlavorFields] [optional]
message str [optional]
status bool [optional]

Example

from hyperstack.models.master_flavors_response import MasterFlavorsResponse

# TODO update the JSON string below
json = "{}"
# create an instance of MasterFlavorsResponse from a JSON string
master_flavors_response_instance = MasterFlavorsResponse.from_json(json)
# print the JSON string representation of the object
print(MasterFlavorsResponse.to_json())

# convert the object into a dict
master_flavors_response_dict = master_flavors_response_instance.to_dict()
# create an instance of MasterFlavorsResponse from a dict
master_flavors_response_from_dict = MasterFlavorsResponse.from_dict(master_flavors_response_dict)

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