/** * 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 type { ErrorDetail } from './ErrorDetail'; import type { ContextualFlowInfo } from './ContextualFlowInfo'; /** * Challenge for ending a session * @export * @interface SessionEndChallenge */ export interface SessionEndChallenge { /** * * @type {ContextualFlowInfo} * @memberof SessionEndChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof SessionEndChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof SessionEndChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof SessionEndChallenge */ pendingUser: string; /** * * @type {string} * @memberof SessionEndChallenge */ pendingUserAvatar: string; /** * * @type {string} * @memberof SessionEndChallenge */ applicationName?: string; /** * * @type {string} * @memberof SessionEndChallenge */ applicationLaunchUrl?: string; /** * * @type {string} * @memberof SessionEndChallenge */ invalidationFlowUrl?: string; /** * * @type {string} * @memberof SessionEndChallenge */ brandName: string; } /** * Check if a given object implements the SessionEndChallenge interface. */ export declare function instanceOfSessionEndChallenge(value: object): value is SessionEndChallenge; export declare function SessionEndChallengeFromJSON(json: any): SessionEndChallenge; export declare function SessionEndChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): SessionEndChallenge; export declare function SessionEndChallengeToJSON(json: any): SessionEndChallenge; export declare function SessionEndChallengeToJSONTyped(value?: SessionEndChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SessionEndChallenge.d.ts.map