Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.08 KB

File metadata and controls

32 lines (23 loc) · 1.08 KB

GeneralUISettings

GeneralUISettings contains global ui settings exposed by API

Properties

Name Type Description Notes
allowed_reactions List[str] [optional]
custom_emojis List[str] [optional]
default_theme str [optional]

Example

from openapi_client.models.general_ui_settings import GeneralUISettings

# TODO update the JSON string below
json = "{}"
# create an instance of GeneralUISettings from a JSON string
general_ui_settings_instance = GeneralUISettings.from_json(json)
# print the JSON string representation of the object
print(GeneralUISettings.to_json())

# convert the object into a dict
general_ui_settings_dict = general_ui_settings_instance.to_dict()
# create an instance of GeneralUISettings from a dict
general_ui_settings_from_dict = GeneralUISettings.from_dict(general_ui_settings_dict)

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