Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.12 KB

File metadata and controls

33 lines (24 loc) · 1.12 KB

CompatibleFlavor

Properties

Name Type Description Notes
constraints object JSON constraints object [optional]
flavor_id int [optional]
flavor_name str [optional]
link_type str Either 'hard' or 'soft' [optional]
reason str [optional]

Example

from hyperstack.models.compatible_flavor import CompatibleFlavor

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

# convert the object into a dict
compatible_flavor_dict = compatible_flavor_instance.to_dict()
# create an instance of CompatibleFlavor from a dict
compatible_flavor_from_dict = CompatibleFlavor.from_dict(compatible_flavor_dict)

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