/** * 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 PatchedNotificationRequest */ export interface PatchedNotificationRequest { /** * * @type {EventRequest} * @memberof PatchedNotificationRequest */ event?: EventRequest; /** * * @type {boolean} * @memberof PatchedNotificationRequest */ seen?: boolean; } /** * Check if a given object implements the PatchedNotificationRequest interface. */ export declare function instanceOfPatchedNotificationRequest(value: object): value is PatchedNotificationRequest; export declare function PatchedNotificationRequestFromJSON(json: any): PatchedNotificationRequest; export declare function PatchedNotificationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedNotificationRequest; export declare function PatchedNotificationRequestToJSON(json: any): PatchedNotificationRequest; export declare function PatchedNotificationRequestToJSONTyped(value?: PatchedNotificationRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedNotificationRequest.d.ts.map