/** * 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 { PolicyTestResult } from './PolicyTestResult'; /** * Base serializer class which doesn't implement create/update methods * @export * @interface LDAPCheckAccess */ export interface LDAPCheckAccess { /** * * @type {boolean} * @memberof LDAPCheckAccess */ hasSearchPermission?: boolean; /** * * @type {PolicyTestResult} * @memberof LDAPCheckAccess */ access: PolicyTestResult; } /** * Check if a given object implements the LDAPCheckAccess interface. */ export declare function instanceOfLDAPCheckAccess(value: object): value is LDAPCheckAccess; export declare function LDAPCheckAccessFromJSON(json: any): LDAPCheckAccess; export declare function LDAPCheckAccessFromJSONTyped(json: any, ignoreDiscriminator: boolean): LDAPCheckAccess; export declare function LDAPCheckAccessToJSON(json: any): LDAPCheckAccess; export declare function LDAPCheckAccessToJSONTyped(value?: LDAPCheckAccess | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=LDAPCheckAccess.d.ts.map