| Name | Type | Description | Notes |
|---|---|---|---|
| icon48 | str | ||
| icon32 | str | ||
| icon24 | str | ||
| icon16 | str |
from docspace_api_sdk.models.icon import Icon
# TODO update the JSON string below
json = "{}"
# create an instance of Icon from a JSON string
icon_instance = Icon.from_json(json)
# print the JSON string representation of the object
print(Icon.to_json())
# convert the object into a dict
icon_dict = icon_instance.to_dict()
# create an instance of Icon from a dict
icon_from_dict = Icon.from_dict(icon_dict)