/* 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'; /** * ScopeMapping Serializer * @export * @interface ScopeMapping */ export interface ScopeMapping { /** * * @type {string} * @memberof ScopeMapping */ 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 ScopeMapping */ managed?: string | null; /** * * @type {string} * @memberof ScopeMapping */ name: string; /** * * @type {string} * @memberof ScopeMapping */ expression: string; /** * Get object's component so that we know how to edit the object * @type {string} * @memberof ScopeMapping */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof ScopeMapping */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof ScopeMapping */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof ScopeMapping */ readonly metaModelName: string; /** * Scope name requested by the client * @type {string} * @memberof ScopeMapping */ scopeName: string; /** * Description shown to the user when consenting. If left empty, the user won't be informed. * @type {string} * @memberof ScopeMapping */ description?: string; } /** * Check if a given object implements the ScopeMapping interface. */ export function instanceOfScopeMapping(value: object): value is ScopeMapping { 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; if (!('scopeName' in value) || value['scopeName'] === undefined) return false; return true; } export function ScopeMappingFromJSON(json: any): ScopeMapping { return ScopeMappingFromJSONTyped(json, false); } export function ScopeMappingFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScopeMapping { 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'], 'scopeName': json['scope_name'], 'description': json['description'] == null ? undefined : json['description'], }; } export function ScopeMappingToJSON(json: any): ScopeMapping { return ScopeMappingToJSONTyped(json, false); } export function ScopeMappingToJSONTyped(value?: Omit | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'managed': value['managed'], 'name': value['name'], 'expression': value['expression'], 'scope_name': value['scopeName'], 'description': value['description'], }; }