Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 810 Bytes

File metadata and controls

29 lines (20 loc) · 810 Bytes

IconModel

Properties

Name Type Description Notes
content str

Example

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)

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