/** * 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 { NotificationRule } from './NotificationRule'; /** * * @export * @interface PaginatedNotificationRuleList */ export interface PaginatedNotificationRuleList { /** * * @type {Pagination} * @memberof PaginatedNotificationRuleList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedNotificationRuleList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedNotificationRuleList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedNotificationRuleList interface. */ export declare function instanceOfPaginatedNotificationRuleList(value: object): value is PaginatedNotificationRuleList; export declare function PaginatedNotificationRuleListFromJSON(json: any): PaginatedNotificationRuleList; export declare function PaginatedNotificationRuleListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedNotificationRuleList; export declare function PaginatedNotificationRuleListToJSON(json: any): PaginatedNotificationRuleList; export declare function PaginatedNotificationRuleListToJSONTyped(value?: PaginatedNotificationRuleList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedNotificationRuleList.d.ts.map