Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1002 Bytes

File metadata and controls

30 lines (21 loc) · 1002 Bytes

MenuItemStatus

Properties

Name Type Description Notes
display_name str Calculated Display name of menu item. [optional]
href str Calculated href of manu item. [optional]

Example

from halo_client.models.menu_item_status import MenuItemStatus

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

# convert the object into a dict
menu_item_status_dict = menu_item_status_instance.to_dict()
# create an instance of MenuItemStatus from a dict
menu_item_status_from_dict = MenuItemStatus.from_dict(menu_item_status_dict)

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