/** * 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'; /** * OAuth Device code challenge * @export * @interface OAuthDeviceCodeChallenge */ export interface OAuthDeviceCodeChallenge { /** * * @type {ContextualFlowInfo} * @memberof OAuthDeviceCodeChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof OAuthDeviceCodeChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof OAuthDeviceCodeChallenge */ responseErrors?: { [key: string]: Array; }; } /** * Check if a given object implements the OAuthDeviceCodeChallenge interface. */ export declare function instanceOfOAuthDeviceCodeChallenge(value: object): value is OAuthDeviceCodeChallenge; export declare function OAuthDeviceCodeChallengeFromJSON(json: any): OAuthDeviceCodeChallenge; export declare function OAuthDeviceCodeChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthDeviceCodeChallenge; export declare function OAuthDeviceCodeChallengeToJSON(json: any): OAuthDeviceCodeChallenge; export declare function OAuthDeviceCodeChallengeToJSONTyped(value?: OAuthDeviceCodeChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=OAuthDeviceCodeChallenge.d.ts.map