Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1001 Bytes

File metadata and controls

33 lines (24 loc) · 1001 Bytes

MenuItem

Properties

Name Type Description Notes
api_version str
kind str
metadata Metadata
spec MenuItemSpec
status MenuItemStatus [optional]

Example

from halo_client.models.menu_item import MenuItem

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

# convert the object into a dict
menu_item_dict = menu_item_instance.to_dict()
# create an instance of MenuItem from a dict
menu_item_from_dict = MenuItem.from_dict(menu_item_dict)

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