| Name | Type | Description | Notes |
|---|---|---|---|
| icon | str | Group icon | [optional] |
from docspace_api_sdk.models.icon_request import IconRequest
# TODO update the JSON string below
json = "{}"
# create an instance of IconRequest from a JSON string
icon_request_instance = IconRequest.from_json(json)
# print the JSON string representation of the object
print(IconRequest.to_json())
# convert the object into a dict
icon_request_dict = icon_request_instance.to_dict()
# create an instance of IconRequest from a dict
icon_request_from_dict = IconRequest.from_dict(icon_request_dict)