/** * 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. */ /** * LDAP PropertyMapping Serializer * @export * @interface LDAPSourcePropertyMappingRequest */ export interface LDAPSourcePropertyMappingRequest { /** * Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update. * @type {string} * @memberof LDAPSourcePropertyMappingRequest */ managed?: string | null; /** * * @type {string} * @memberof LDAPSourcePropertyMappingRequest */ name: string; /** * * @type {string} * @memberof LDAPSourcePropertyMappingRequest */ expression: string; } /** * Check if a given object implements the LDAPSourcePropertyMappingRequest interface. */ export declare function instanceOfLDAPSourcePropertyMappingRequest(value: object): value is LDAPSourcePropertyMappingRequest; export declare function LDAPSourcePropertyMappingRequestFromJSON(json: any): LDAPSourcePropertyMappingRequest; export declare function LDAPSourcePropertyMappingRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): LDAPSourcePropertyMappingRequest; export declare function LDAPSourcePropertyMappingRequestToJSON(json: any): LDAPSourcePropertyMappingRequest; export declare function LDAPSourcePropertyMappingRequestToJSONTyped(value?: LDAPSourcePropertyMappingRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=LDAPSourcePropertyMappingRequest.d.ts.map