/* 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'; /** * SCIMSourcePropertyMapping Serializer * @export * @interface SCIMSourcePropertyMapping */ export interface SCIMSourcePropertyMapping { /** * * @type {string} * @memberof SCIMSourcePropertyMapping */ 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 SCIMSourcePropertyMapping */ managed?: string | null; /** * * @type {string} * @memberof SCIMSourcePropertyMapping */ name: string; /** * * @type {string} * @memberof SCIMSourcePropertyMapping */ expression: string; /** * Get object's component so that we know how to edit the object * @type {string} * @memberof SCIMSourcePropertyMapping */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof SCIMSourcePropertyMapping */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof SCIMSourcePropertyMapping */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof SCIMSourcePropertyMapping */ readonly metaModelName: string; } /** * Check if a given object implements the SCIMSourcePropertyMapping interface. */ export function instanceOfSCIMSourcePropertyMapping(value: object): value is SCIMSourcePropertyMapping { 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 SCIMSourcePropertyMappingFromJSON(json: any): SCIMSourcePropertyMapping { return SCIMSourcePropertyMappingFromJSONTyped(json, false); } export function SCIMSourcePropertyMappingFromJSONTyped(json: any, ignoreDiscriminator: boolean): SCIMSourcePropertyMapping { 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 SCIMSourcePropertyMappingToJSON(json: any): SCIMSourcePropertyMapping { return SCIMSourcePropertyMappingToJSONTyped(json, false); } export function SCIMSourcePropertyMappingToJSONTyped(value?: Omit | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'managed': value['managed'], 'name': value['name'], 'expression': value['expression'], }; }