Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 865 Bytes

File metadata and controls

32 lines (23 loc) · 865 Bytes

Menu

Properties

Name Type Description Notes
api_version str
kind str
metadata Metadata
spec MenuSpec

Example

from halo_client.models.menu import Menu

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

# convert the object into a dict
menu_dict = menu_instance.to_dict()
# create an instance of Menu from a dict
menu_from_dict = Menu.from_dict(menu_dict)

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