Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 965 Bytes

File metadata and controls

30 lines (21 loc) · 965 Bytes

FlavorLabelFields

Properties

Name Type Description Notes
id int [optional]
label str [optional]

Example

from hyperstack.models.flavor_label_fields import FlavorLabelFields

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

# convert the object into a dict
flavor_label_fields_dict = flavor_label_fields_instance.to_dict()
# create an instance of FlavorLabelFields from a dict
flavor_label_fields_from_dict = FlavorLabelFields.from_dict(flavor_label_fields_dict)

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