| Name | Type | Description | Notes |
|---|---|---|---|
| icon_name | DivarIconsIconName | [optional] | |
| indicator_percentage | int | [optional] | |
| indicator_text | str | [optional] | |
| left | AddonsEvaluationRowSection | [optional] | |
| middle | AddonsEvaluationRowSection | [optional] | |
| right | AddonsEvaluationRowSection | [optional] |
from kenar_api_client.models.addons_evaluation_row import AddonsEvaluationRow
# TODO update the JSON string below
json = "{}"
# create an instance of AddonsEvaluationRow from a JSON string
addons_evaluation_row_instance = AddonsEvaluationRow.from_json(json)
# print the JSON string representation of the object
print(AddonsEvaluationRow.to_json())
# convert the object into a dict
addons_evaluation_row_dict = addons_evaluation_row_instance.to_dict()
# create an instance of AddonsEvaluationRow from a dict
addons_evaluation_row_from_dict = AddonsEvaluationRow.from_dict(addons_evaluation_row_dict)