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