/** * 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'; /** * Final challenge after user enters their code * @export * @interface OAuthDeviceCodeFinishChallenge */ export interface OAuthDeviceCodeFinishChallenge { /** * * @type {ContextualFlowInfo} * @memberof OAuthDeviceCodeFinishChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof OAuthDeviceCodeFinishChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof OAuthDeviceCodeFinishChallenge */ responseErrors?: { [key: string]: Array; }; } /** * Check if a given object implements the OAuthDeviceCodeFinishChallenge interface. */ export declare function instanceOfOAuthDeviceCodeFinishChallenge(value: object): value is OAuthDeviceCodeFinishChallenge; export declare function OAuthDeviceCodeFinishChallengeFromJSON(json: any): OAuthDeviceCodeFinishChallenge; export declare function OAuthDeviceCodeFinishChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthDeviceCodeFinishChallenge; export declare function OAuthDeviceCodeFinishChallengeToJSON(json: any): OAuthDeviceCodeFinishChallenge; export declare function OAuthDeviceCodeFinishChallengeToJSONTyped(value?: OAuthDeviceCodeFinishChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=OAuthDeviceCodeFinishChallenge.d.ts.map