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