| 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] |
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)