Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.32 KB

File metadata and controls

36 lines (27 loc) · 1.32 KB

NotificationHandlerSettings

Properties

Name Type Description Notes
email str [optional]
webhook str [optional]
squadcast str [optional]
googlechat str [optional]
slack str [optional]
discord str [optional]
telegram str [optional]
telegram_chat_id str [optional]

Example

from openapi_client.models.notification_handler_settings import NotificationHandlerSettings

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

# convert the object into a dict
notification_handler_settings_dict = notification_handler_settings_instance.to_dict()
# create an instance of NotificationHandlerSettings from a dict
notification_handler_settings_from_dict = NotificationHandlerSettings.from_dict(notification_handler_settings_dict)

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