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