| Name | Type | Description | Notes |
|---|---|---|---|
| content | str |
from revengai.models.icon_model import IconModel
# TODO update the JSON string below
json = "{}"
# create an instance of IconModel from a JSON string
icon_model_instance = IconModel.from_json(json)
# print the JSON string representation of the object
print(IconModel.to_json())
# convert the object into a dict
icon_model_dict = icon_model_instance.to_dict()
# create an instance of IconModel from a dict
icon_model_from_dict = IconModel.from_dict(icon_model_dict)