| Name |
Type |
Description |
Notes |
| webhook_url |
str |
|
[optional] |
from overseerr.models.slack_settings_options import SlackSettingsOptions
# TODO update the JSON string below
json = "{}"
# create an instance of SlackSettingsOptions from a JSON string
slack_settings_options_instance = SlackSettingsOptions.from_json(json)
# print the JSON string representation of the object
print(SlackSettingsOptions.to_json())
# convert the object into a dict
slack_settings_options_dict = slack_settings_options_instance.to_dict()
# create an instance of SlackSettingsOptions from a dict
slack_settings_options_from_dict = SlackSettingsOptions.from_dict(slack_settings_options_dict)
[Back to Model list] [Back to API list] [Back to README]