Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.2 KB

File metadata and controls

35 lines (26 loc) · 1.2 KB

MenuItemVo

A value object for {@link MenuItem MenuItem}.

Properties

Name Type Description Notes
children List[MenuItemVo] [optional]
display_name str Gets menu item's display name. [optional]
metadata Metadata
parent_name str [optional]
spec MenuItemSpec [optional]
status MenuItemStatus [optional]

Example

from halo_client.models.menu_item_vo import MenuItemVo

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

# convert the object into a dict
menu_item_vo_dict = menu_item_vo_instance.to_dict()
# create an instance of MenuItemVo from a dict
menu_item_vo_from_dict = MenuItemVo.from_dict(menu_item_vo_dict)

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