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