Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 961 Bytes

File metadata and controls

32 lines (23 loc) · 961 Bytes

MenuVo

A value object for {@link Menu Menu}.

Properties

Name Type Description Notes
menu_items List[MenuItemVo] [optional]
metadata Metadata
spec MenuSpec [optional]

Example

from halo_client.models.menu_vo import MenuVo

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

# convert the object into a dict
menu_vo_dict = menu_vo_instance.to_dict()
# create an instance of MenuVo from a dict
menu_vo_from_dict = MenuVo.from_dict(menu_vo_dict)

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