Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.11 KB

File metadata and controls

34 lines (25 loc) · 1.11 KB

AddonsEventRow

Properties

Name Type Description Notes
has_divider bool [optional]
icon_name DivarIconsIconName [optional]
image_id str [optional]
label str [optional]
subtitle str [optional]
title str [optional]

Example

from kenar_api_client.models.addons_event_row import AddonsEventRow

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

# convert the object into a dict
addons_event_row_dict = addons_event_row_instance.to_dict()
# create an instance of AddonsEventRow from a dict
addons_event_row_from_dict = AddonsEventRow.from_dict(addons_event_row_dict)

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