Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

File metadata and controls

30 lines (21 loc) · 1.12 KB

AddonsEvaluationRowSection

Properties

Name Type Description Notes
section_color AddonsWidgetColor [optional]
text str [optional]

Example

from kenar_api_client.models.addons_evaluation_row_section import AddonsEvaluationRowSection

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

# convert the object into a dict
addons_evaluation_row_section_dict = addons_evaluation_row_section_instance.to_dict()
# create an instance of AddonsEvaluationRowSection from a dict
addons_evaluation_row_section_from_dict = AddonsEvaluationRowSection.from_dict(addons_evaluation_row_section_dict)

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