/** * 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. */ /** * User source connection * @export * @interface UserLDAPSourceConnectionRequest */ export interface UserLDAPSourceConnectionRequest { /** * * @type {number} * @memberof UserLDAPSourceConnectionRequest */ user: number; /** * * @type {string} * @memberof UserLDAPSourceConnectionRequest */ source: string; /** * * @type {string} * @memberof UserLDAPSourceConnectionRequest */ identifier: string; } /** * Check if a given object implements the UserLDAPSourceConnectionRequest interface. */ export declare function instanceOfUserLDAPSourceConnectionRequest(value: object): value is UserLDAPSourceConnectionRequest; export declare function UserLDAPSourceConnectionRequestFromJSON(json: any): UserLDAPSourceConnectionRequest; export declare function UserLDAPSourceConnectionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserLDAPSourceConnectionRequest; export declare function UserLDAPSourceConnectionRequestToJSON(json: any): UserLDAPSourceConnectionRequest; export declare function UserLDAPSourceConnectionRequestToJSONTyped(value?: UserLDAPSourceConnectionRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserLDAPSourceConnectionRequest.d.ts.map