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