/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { SeverityEnum } from './SeverityEnum'; /** * NotificationRule Serializer * @export * @interface PatchedNotificationRuleRequest */ export interface PatchedNotificationRuleRequest { /** * * @type {string} * @memberof PatchedNotificationRuleRequest */ name?: string; /** * Select which transports should be used to notify the user. If none are selected, the notification will only be shown in the authentik UI. * @type {Array} * @memberof PatchedNotificationRuleRequest */ transports?: Array; /** * Controls which severity level the created notifications will have. * @type {SeverityEnum} * @memberof PatchedNotificationRuleRequest */ severity?: SeverityEnum; /** * Define which group of users this notification should be sent and shown to. If left empty, Notification won't ben sent. * @type {string} * @memberof PatchedNotificationRuleRequest */ destinationGroup?: string | null; /** * When enabled, notification will be sent to user the user that triggered the event.When destination_group is configured, notification is sent to both. * @type {boolean} * @memberof PatchedNotificationRuleRequest */ destinationEventUser?: boolean; } /** * Check if a given object implements the PatchedNotificationRuleRequest interface. */ export declare function instanceOfPatchedNotificationRuleRequest(value: object): value is PatchedNotificationRuleRequest; export declare function PatchedNotificationRuleRequestFromJSON(json: any): PatchedNotificationRuleRequest; export declare function PatchedNotificationRuleRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedNotificationRuleRequest; export declare function PatchedNotificationRuleRequestToJSON(json: any): PatchedNotificationRuleRequest; export declare function PatchedNotificationRuleRequestToJSONTyped(value?: PatchedNotificationRuleRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedNotificationRuleRequest.d.ts.map