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