Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 861 Bytes

File metadata and controls

28 lines (20 loc) · 861 Bytes

IconRequest

Properties

Name Type Description Notes
icon str Group icon [optional]

Example

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)

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