/** * 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 { EventRequest } from './EventRequest'; /** * Notification Serializer * @export * @interface NotificationRequest */ export interface NotificationRequest { /** * * @type {EventRequest} * @memberof NotificationRequest */ event?: EventRequest; /** * * @type {boolean} * @memberof NotificationRequest */ seen?: boolean; } /** * Check if a given object implements the NotificationRequest interface. */ export declare function instanceOfNotificationRequest(value: object): value is NotificationRequest; export declare function NotificationRequestFromJSON(json: any): NotificationRequest; export declare function NotificationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationRequest; export declare function NotificationRequestToJSON(json: any): NotificationRequest; export declare function NotificationRequestToJSONTyped(value?: NotificationRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=NotificationRequest.d.ts.map