/** * 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'; import type { Event } from './Event'; /** * Notification Serializer * @export * @interface Notification */ export interface Notification { /** * * @type {string} * @memberof Notification */ readonly pk: string; /** * * @type {SeverityEnum} * @memberof Notification */ readonly severity: SeverityEnum; /** * * @type {string} * @memberof Notification */ readonly body: string; /** * * @type {Date} * @memberof Notification */ readonly created: Date; /** * * @type {Event} * @memberof Notification */ event?: Event; /** * * @type {boolean} * @memberof Notification */ seen?: boolean; } /** * Check if a given object implements the Notification interface. */ export declare function instanceOfNotification(value: object): value is Notification; export declare function NotificationFromJSON(json: any): Notification; export declare function NotificationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Notification; export declare function NotificationToJSON(json: any): Notification; export declare function NotificationToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Notification.d.ts.map