| Name | Type | Description | Notes |
|---|---|---|---|
| enabled | bool | [optional] | |
| types | float | [optional] | |
| options | SlackSettingsOptions | [optional] |
from seerr.models.slack_settings import SlackSettings
# TODO update the JSON string below
json = "{}"
# create an instance of SlackSettings from a JSON string
slack_settings_instance = SlackSettings.from_json(json)
# print the JSON string representation of the object
print(SlackSettings.to_json())
# convert the object into a dict
slack_settings_dict = slack_settings_instance.to_dict()
# create an instance of SlackSettings from a dict
slack_settings_from_dict = SlackSettings.from_dict(slack_settings_dict)