/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * 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'; /** * Signed challenge for authentik agent to respond to * @export * @interface EndpointAgentChallenge */ export interface EndpointAgentChallenge { /** * * @type {ContextualFlowInfo} * @memberof EndpointAgentChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof EndpointAgentChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof EndpointAgentChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof EndpointAgentChallenge */ challenge: string; /** * * @type {number} * @memberof EndpointAgentChallenge */ challengeIdleTimeout: number; } /** * Check if a given object implements the EndpointAgentChallenge interface. */ export declare function instanceOfEndpointAgentChallenge(value: object): value is EndpointAgentChallenge; export declare function EndpointAgentChallengeFromJSON(json: any): EndpointAgentChallenge; export declare function EndpointAgentChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): EndpointAgentChallenge; export declare function EndpointAgentChallengeToJSON(json: any): EndpointAgentChallenge; export declare function EndpointAgentChallengeToJSONTyped(value?: EndpointAgentChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EndpointAgentChallenge.d.ts.map