Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.67 KB

File metadata and controls

39 lines (30 loc) · 1.67 KB

AddonsWidget

Properties

Name Type Description Notes
button_bar AddonsButtonBar [optional]
description_row AddonsDescriptionRow [optional]
evaluation_row AddonsEvaluationRow [optional]
event_row AddonsEventRow [optional]
group_info_row AddonsGroupInfoRow [optional]
image_carousel_row AddonsImageCarouselRow [optional]
score_row AddonsScoreRow [optional]
selector_row AddonsSelectorRow [optional]
semantic_paths Dict[str, str] [optional]
subtitle_row AddonsSubtitleRow [optional]
title_row AddonsTitleRow [optional]

Example

from kenar_api_client.models.addons_widget import AddonsWidget

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

# convert the object into a dict
addons_widget_dict = addons_widget_instance.to_dict()
# create an instance of AddonsWidget from a dict
addons_widget_from_dict = AddonsWidget.from_dict(addons_widget_dict)

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