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