Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 906 Bytes

File metadata and controls

30 lines (21 loc) · 906 Bytes

MenuSpec

Properties

Name Type Description Notes
display_name str The display name of the menu.
menu_items List[str] Menu items of this menu. [optional]

Example

from halo_client.models.menu_spec import MenuSpec

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

# convert the object into a dict
menu_spec_dict = menu_spec_instance.to_dict()
# create an instance of MenuSpec from a dict
menu_spec_from_dict = MenuSpec.from_dict(menu_spec_dict)

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