Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.35 KB

File metadata and controls

34 lines (25 loc) · 1.35 KB

AddonsEvaluationRow

Properties

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]

Example

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)

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