/* 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'; import type { PolicyEngineMode } from './PolicyEngineMode'; import { PolicyEngineModeFromJSON, PolicyEngineModeFromJSONTyped, PolicyEngineModeToJSON, PolicyEngineModeToJSONTyped, } from './PolicyEngineMode'; import type { UserMatchingModeEnum } from './UserMatchingModeEnum'; import { UserMatchingModeEnumFromJSON, UserMatchingModeEnumFromJSONTyped, UserMatchingModeEnumToJSON, UserMatchingModeEnumToJSONTyped, } from './UserMatchingModeEnum'; /** * Source Serializer * @export * @interface Source */ export interface Source { /** * * @type {string} * @memberof Source */ readonly pk: string; /** * Source's display Name. * @type {string} * @memberof Source */ name: string; /** * Internal source name, used in URLs. * @type {string} * @memberof Source */ slug: string; /** * * @type {boolean} * @memberof Source */ enabled?: boolean; /** * Flow to use when authenticating existing users. * @type {string} * @memberof Source */ authenticationFlow?: string | null; /** * Flow to use when enrolling new users. * @type {string} * @memberof Source */ enrollmentFlow?: string | null; /** * * @type {Array} * @memberof Source */ userPropertyMappings?: Array; /** * * @type {Array} * @memberof Source */ groupPropertyMappings?: Array; /** * Get object component so that we know how to edit the object * @type {string} * @memberof Source */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof Source */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof Source */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof Source */ readonly metaModelName: string; /** * * @type {PolicyEngineMode} * @memberof Source */ policyEngineMode?: PolicyEngineMode; /** * How the source determines if an existing user should be authenticated or a new user enrolled. * @type {UserMatchingModeEnum} * @memberof Source */ userMatchingMode?: UserMatchingModeEnum; /** * 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 Source */ readonly managed: string | null; /** * * @type {string} * @memberof Source */ userPathTemplate?: string; /** * Get the URL to the Icon. If the name is /static or * starts with http it is returned as-is * @type {string} * @memberof Source */ readonly icon: string | null; } /** * Check if a given object implements the Source interface. */ export function instanceOfSource(value: object): value is Source { if (!('pk' in value) || value['pk'] === undefined) return false; if (!('name' in value) || value['name'] === undefined) return false; if (!('slug' in value) || value['slug'] === 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 (!('managed' in value) || value['managed'] === undefined) return false; if (!('icon' in value) || value['icon'] === undefined) return false; return true; } export function SourceFromJSON(json: any): Source { return SourceFromJSONTyped(json, false); } export function SourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): Source { if (json == null) { return json; } return { 'pk': json['pk'], 'name': json['name'], 'slug': json['slug'], 'enabled': json['enabled'] == null ? undefined : json['enabled'], 'authenticationFlow': json['authentication_flow'] == null ? undefined : json['authentication_flow'], 'enrollmentFlow': json['enrollment_flow'] == null ? undefined : json['enrollment_flow'], 'userPropertyMappings': json['user_property_mappings'] == null ? undefined : json['user_property_mappings'], 'groupPropertyMappings': json['group_property_mappings'] == null ? undefined : json['group_property_mappings'], 'component': json['component'], 'verboseName': json['verbose_name'], 'verboseNamePlural': json['verbose_name_plural'], 'metaModelName': json['meta_model_name'], 'policyEngineMode': json['policy_engine_mode'] == null ? undefined : PolicyEngineModeFromJSON(json['policy_engine_mode']), 'userMatchingMode': json['user_matching_mode'] == null ? undefined : UserMatchingModeEnumFromJSON(json['user_matching_mode']), 'managed': json['managed'], 'userPathTemplate': json['user_path_template'] == null ? undefined : json['user_path_template'], 'icon': json['icon'], }; } export function SourceToJSON(json: any): Source { return SourceToJSONTyped(json, false); } export function SourceToJSONTyped(value?: Omit | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'name': value['name'], 'slug': value['slug'], 'enabled': value['enabled'], 'authentication_flow': value['authenticationFlow'], 'enrollment_flow': value['enrollmentFlow'], 'user_property_mappings': value['userPropertyMappings'], 'group_property_mappings': value['groupPropertyMappings'], 'policy_engine_mode': PolicyEngineModeToJSON(value['policyEngineMode']), 'user_matching_mode': UserMatchingModeEnumToJSON(value['userMatchingMode']), 'user_path_template': value['userPathTemplate'], }; }