Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 993 Bytes

File metadata and controls

31 lines (22 loc) · 993 Bytes

SlackSettings

Properties

Name Type Description Notes
enabled bool [optional]
types float [optional]
options SlackSettingsOptions [optional]

Example

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)

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