/** * 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 { Pagination } from './Pagination'; import type { Notification } from './Notification'; /** * * @export * @interface PaginatedNotificationList */ export interface PaginatedNotificationList { /** * * @type {Pagination} * @memberof PaginatedNotificationList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedNotificationList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedNotificationList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedNotificationList interface. */ export declare function instanceOfPaginatedNotificationList(value: object): value is PaginatedNotificationList; export declare function PaginatedNotificationListFromJSON(json: any): PaginatedNotificationList; export declare function PaginatedNotificationListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedNotificationList; export declare function PaginatedNotificationListToJSON(json: any): PaginatedNotificationList; export declare function PaginatedNotificationListToJSONTyped(value?: PaginatedNotificationList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedNotificationList.d.ts.map