/** * 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'; /** * Autosubmit challenge used to send and navigate a POST request * @export * @interface AutosubmitChallenge */ export interface AutosubmitChallenge { /** * * @type {ContextualFlowInfo} * @memberof AutosubmitChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof AutosubmitChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof AutosubmitChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof AutosubmitChallenge */ url: string; /** * * @type {{ [key: string]: string; }} * @memberof AutosubmitChallenge */ attrs: { [key: string]: string; }; /** * * @type {string} * @memberof AutosubmitChallenge */ title?: string; } /** * Check if a given object implements the AutosubmitChallenge interface. */ export declare function instanceOfAutosubmitChallenge(value: object): value is AutosubmitChallenge; export declare function AutosubmitChallengeFromJSON(json: any): AutosubmitChallenge; export declare function AutosubmitChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AutosubmitChallenge; export declare function AutosubmitChallengeToJSON(json: any): AutosubmitChallenge; export declare function AutosubmitChallengeToJSONTyped(value?: AutosubmitChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AutosubmitChallenge.d.ts.map