/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * 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 { LifecycleRule } from './LifecycleRule'; /** * * @export * @interface PaginatedLifecycleRuleList */ export interface PaginatedLifecycleRuleList { /** * * @type {Pagination} * @memberof PaginatedLifecycleRuleList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedLifecycleRuleList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedLifecycleRuleList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedLifecycleRuleList interface. */ export declare function instanceOfPaginatedLifecycleRuleList(value: object): value is PaginatedLifecycleRuleList; export declare function PaginatedLifecycleRuleListFromJSON(json: any): PaginatedLifecycleRuleList; export declare function PaginatedLifecycleRuleListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedLifecycleRuleList; export declare function PaginatedLifecycleRuleListToJSON(json: any): PaginatedLifecycleRuleList; export declare function PaginatedLifecycleRuleListToJSONTyped(value?: PaginatedLifecycleRuleList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedLifecycleRuleList.d.ts.map