/* 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 { ErrorDetail } from './ErrorDetail'; import { ErrorDetailFromJSON, ErrorDetailFromJSONTyped, ErrorDetailToJSON, ErrorDetailToJSONTyped, } from './ErrorDetail'; import type { ContextualFlowInfo } from './ContextualFlowInfo'; import { ContextualFlowInfoFromJSON, ContextualFlowInfoFromJSONTyped, ContextualFlowInfoToJSON, ContextualFlowInfoToJSONTyped, } from './ContextualFlowInfo'; import type { ConsentPermission } from './ConsentPermission'; import { ConsentPermissionFromJSON, ConsentPermissionFromJSONTyped, ConsentPermissionToJSON, ConsentPermissionToJSONTyped, } from './ConsentPermission'; /** * Challenge info for consent screens * @export * @interface ConsentChallenge */ export interface ConsentChallenge { /** * * @type {ContextualFlowInfo} * @memberof ConsentChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof ConsentChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof ConsentChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof ConsentChallenge */ pendingUser: string; /** * * @type {string} * @memberof ConsentChallenge */ pendingUserAvatar: string; /** * * @type {string} * @memberof ConsentChallenge */ headerText?: string; /** * * @type {Array} * @memberof ConsentChallenge */ permissions: Array; /** * * @type {Array} * @memberof ConsentChallenge */ additionalPermissions: Array; /** * * @type {string} * @memberof ConsentChallenge */ token: string; } /** * Check if a given object implements the ConsentChallenge interface. */ export function instanceOfConsentChallenge(value: object): value is ConsentChallenge { if (!('pendingUser' in value) || value['pendingUser'] === undefined) return false; if (!('pendingUserAvatar' in value) || value['pendingUserAvatar'] === undefined) return false; if (!('permissions' in value) || value['permissions'] === undefined) return false; if (!('additionalPermissions' in value) || value['additionalPermissions'] === undefined) return false; if (!('token' in value) || value['token'] === undefined) return false; return true; } export function ConsentChallengeFromJSON(json: any): ConsentChallenge { return ConsentChallengeFromJSONTyped(json, false); } export function ConsentChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConsentChallenge { if (json == null) { return json; } return { 'flowInfo': json['flow_info'] == null ? undefined : ContextualFlowInfoFromJSON(json['flow_info']), 'component': json['component'] == null ? undefined : json['component'], 'responseErrors': json['response_errors'] == null ? undefined : json['response_errors'], 'pendingUser': json['pending_user'], 'pendingUserAvatar': json['pending_user_avatar'], 'headerText': json['header_text'] == null ? undefined : json['header_text'], 'permissions': ((json['permissions'] as Array).map(ConsentPermissionFromJSON)), 'additionalPermissions': ((json['additional_permissions'] as Array).map(ConsentPermissionFromJSON)), 'token': json['token'], }; } export function ConsentChallengeToJSON(json: any): ConsentChallenge { return ConsentChallengeToJSONTyped(json, false); } export function ConsentChallengeToJSONTyped(value?: ConsentChallenge | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'flow_info': ContextualFlowInfoToJSON(value['flowInfo']), 'component': value['component'], 'response_errors': value['responseErrors'], 'pending_user': value['pendingUser'], 'pending_user_avatar': value['pendingUserAvatar'], 'header_text': value['headerText'], 'permissions': ((value['permissions'] as Array).map(ConsentPermissionToJSON)), 'additional_permissions': ((value['additionalPermissions'] as Array).map(ConsentPermissionToJSON)), 'token': value['token'], }; }