Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.14 KB

File metadata and controls

33 lines (24 loc) · 1.14 KB

AddonsSelectorRow

Properties

Name Type Description Notes
action AddonsAction [optional]
has_divider bool [optional]
icon_name DivarIconsIconName [optional]
image_id str [optional]
title str [optional]

Example

from kenar_api_client.models.addons_selector_row import AddonsSelectorRow

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

# convert the object into a dict
addons_selector_row_dict = addons_selector_row_instance.to_dict()
# create an instance of AddonsSelectorRow from a dict
addons_selector_row_from_dict = AddonsSelectorRow.from_dict(addons_selector_row_dict)

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