/** * 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 { Source } from './Source'; /** * User source connection * @export * @interface UserLDAPSourceConnection */ export interface UserLDAPSourceConnection { /** * * @type {number} * @memberof UserLDAPSourceConnection */ readonly pk: number; /** * * @type {number} * @memberof UserLDAPSourceConnection */ user: number; /** * * @type {string} * @memberof UserLDAPSourceConnection */ source: string; /** * * @type {Source} * @memberof UserLDAPSourceConnection */ readonly sourceObj: Source; /** * * @type {string} * @memberof UserLDAPSourceConnection */ identifier: string; /** * * @type {Date} * @memberof UserLDAPSourceConnection */ readonly created: Date; /** * * @type {Date} * @memberof UserLDAPSourceConnection */ readonly lastUpdated: Date; } /** * Check if a given object implements the UserLDAPSourceConnection interface. */ export declare function instanceOfUserLDAPSourceConnection(value: object): value is UserLDAPSourceConnection; export declare function UserLDAPSourceConnectionFromJSON(json: any): UserLDAPSourceConnection; export declare function UserLDAPSourceConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserLDAPSourceConnection; export declare function UserLDAPSourceConnectionToJSON(json: any): UserLDAPSourceConnection; export declare function UserLDAPSourceConnectionToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserLDAPSourceConnection.d.ts.map