/* 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'; /** * LDAP PropertyMapping Serializer * @export * @interface LDAPSourcePropertyMapping */ export interface LDAPSourcePropertyMapping { /** * * @type {string} * @memberof LDAPSourcePropertyMapping */ readonly pk: string; /** * 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 LDAPSourcePropertyMapping */ managed?: string | null; /** * * @type {string} * @memberof LDAPSourcePropertyMapping */ name: string; /** * * @type {string} * @memberof LDAPSourcePropertyMapping */ expression: string; /** * Get object's component so that we know how to edit the object * @type {string} * @memberof LDAPSourcePropertyMapping */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof LDAPSourcePropertyMapping */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof LDAPSourcePropertyMapping */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof LDAPSourcePropertyMapping */ readonly metaModelName: string; } /** * Check if a given object implements the LDAPSourcePropertyMapping interface. */ export function instanceOfLDAPSourcePropertyMapping(value: object): value is LDAPSourcePropertyMapping { if (!('pk' in value) || value['pk'] === undefined) return false; if (!('name' in value) || value['name'] === undefined) return false; if (!('expression' in value) || value['expression'] === undefined) return false; if (!('component' in value) || value['component'] === undefined) return false; if (!('verboseName' in value) || value['verboseName'] === undefined) return false; if (!('verboseNamePlural' in value) || value['verboseNamePlural'] === undefined) return false; if (!('metaModelName' in value) || value['metaModelName'] === undefined) return false; return true; } export function LDAPSourcePropertyMappingFromJSON(json: any): LDAPSourcePropertyMapping { return LDAPSourcePropertyMappingFromJSONTyped(json, false); } export function LDAPSourcePropertyMappingFromJSONTyped(json: any, ignoreDiscriminator: boolean): LDAPSourcePropertyMapping { if (json == null) { return json; } return { 'pk': json['pk'], 'managed': json['managed'] == null ? undefined : json['managed'], 'name': json['name'], 'expression': json['expression'], 'component': json['component'], 'verboseName': json['verbose_name'], 'verboseNamePlural': json['verbose_name_plural'], 'metaModelName': json['meta_model_name'], }; } export function LDAPSourcePropertyMappingToJSON(json: any): LDAPSourcePropertyMapping { return LDAPSourcePropertyMappingToJSONTyped(json, false); } export function LDAPSourcePropertyMappingToJSONTyped(value?: Omit | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'managed': value['managed'], 'name': value['name'], 'expression': value['expression'], }; }