NotificationChannelFilters constructor

const NotificationChannelFilters({
  1. Input<List<String>?>? messageTypes,
  2. Input<List<String>?>? severities,
})

Creates a new NotificationChannelFilters. messageTypes Events to receive notifications for. Valid values are NEW_INSIGHT, CLOSED_INSIGHT, NEW_ASSOCIATION, SEVERITY_UPGRADED, and NEW_RECOMMENDATION. severities Severity levels to receive notifications for. Valid values are LOW, MEDIUM, and HIGH.

Implementation

const NotificationChannelFilters({
  this.messageTypes,
  this.severities,
});