You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Custom payload fields to send additional information in the alert notifications. Can be left empty.
event_id
str
Id of the event to be notified about.
Example
frominstana_client.models.manual_alerting_channel_configurationimportManualAlertingChannelConfiguration# TODO update the JSON string belowjson="{}"# create an instance of ManualAlertingChannelConfiguration from a JSON stringmanual_alerting_channel_configuration_instance=ManualAlertingChannelConfiguration.from_json(json)
# print the JSON string representation of the objectprint(ManualAlertingChannelConfiguration.to_json())
# convert the object into a dictmanual_alerting_channel_configuration_dict=manual_alerting_channel_configuration_instance.to_dict()
# create an instance of ManualAlertingChannelConfiguration from a dictmanual_alerting_channel_configuration_from_dict=ManualAlertingChannelConfiguration.from_dict(manual_alerting_channel_configuration_dict)