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