| Name |
Type |
Description |
Notes |
| email_is_enabled |
int |
|
[optional] |
| webhook |
str |
|
[optional] |
| slack |
str |
|
[optional] |
| twilio |
str |
|
[optional] |
from openapi_client.models.monitor_notifications import MonitorNotifications
# TODO update the JSON string below
json = "{}"
# create an instance of MonitorNotifications from a JSON string
monitor_notifications_instance = MonitorNotifications.from_json(json)
# print the JSON string representation of the object
print(MonitorNotifications.to_json())
# convert the object into a dict
monitor_notifications_dict = monitor_notifications_instance.to_dict()
# create an instance of MonitorNotifications from a dict
monitor_notifications_from_dict = MonitorNotifications.from_dict(monitor_notifications_dict)
[Back to Model list] [Back to API list] [Back to README]