| Name | Type | Description | Notes |
|---|---|---|---|
| content | str |
fromrevengai.models.icon_modelimportIconModel# TODO update the JSON string belowjson="{}"# create an instance of IconModel from a JSON stringicon_model_instance=IconModel.from_json(json)
# print the JSON string representation of the objectprint(IconModel.to_json())
# convert the object into a dicticon_model_dict=icon_model_instance.to_dict()
# create an instance of IconModel from a dicticon_model_from_dict=IconModel.from_dict(icon_model_dict)