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