/* tslint:disable */ /* eslint-disable */ /** * 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 { mapValues } from '../runtime'; /** * User source connection * @export * @interface PatchedUserLDAPSourceConnectionRequest */ export interface PatchedUserLDAPSourceConnectionRequest { /** * * @type {number} * @memberof PatchedUserLDAPSourceConnectionRequest */ user?: number; /** * * @type {string} * @memberof PatchedUserLDAPSourceConnectionRequest */ source?: string; /** * * @type {string} * @memberof PatchedUserLDAPSourceConnectionRequest */ identifier?: string; } /** * Check if a given object implements the PatchedUserLDAPSourceConnectionRequest interface. */ export function instanceOfPatchedUserLDAPSourceConnectionRequest(value: object): value is PatchedUserLDAPSourceConnectionRequest { return true; } export function PatchedUserLDAPSourceConnectionRequestFromJSON(json: any): PatchedUserLDAPSourceConnectionRequest { return PatchedUserLDAPSourceConnectionRequestFromJSONTyped(json, false); } export function PatchedUserLDAPSourceConnectionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedUserLDAPSourceConnectionRequest { if (json == null) { return json; } return { 'user': json['user'] == null ? undefined : json['user'], 'source': json['source'] == null ? undefined : json['source'], 'identifier': json['identifier'] == null ? undefined : json['identifier'], }; } export function PatchedUserLDAPSourceConnectionRequestToJSON(json: any): PatchedUserLDAPSourceConnectionRequest { return PatchedUserLDAPSourceConnectionRequestToJSONTyped(json, false); } export function PatchedUserLDAPSourceConnectionRequestToJSONTyped(value?: PatchedUserLDAPSourceConnectionRequest | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'user': value['user'], 'source': value['source'], 'identifier': value['identifier'], }; }