/** * 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. */ /** * Response that includes the user-entered device code * @export * @interface OAuthDeviceCodeChallengeResponseRequest */ export interface OAuthDeviceCodeChallengeResponseRequest { /** * * @type {string} * @memberof OAuthDeviceCodeChallengeResponseRequest */ component?: string; /** * * @type {string} * @memberof OAuthDeviceCodeChallengeResponseRequest */ code: string; } /** * Check if a given object implements the OAuthDeviceCodeChallengeResponseRequest interface. */ export declare function instanceOfOAuthDeviceCodeChallengeResponseRequest(value: object): value is OAuthDeviceCodeChallengeResponseRequest; export declare function OAuthDeviceCodeChallengeResponseRequestFromJSON(json: any): OAuthDeviceCodeChallengeResponseRequest; export declare function OAuthDeviceCodeChallengeResponseRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthDeviceCodeChallengeResponseRequest; export declare function OAuthDeviceCodeChallengeResponseRequestToJSON(json: any): OAuthDeviceCodeChallengeResponseRequest; export declare function OAuthDeviceCodeChallengeResponseRequestToJSONTyped(value?: OAuthDeviceCodeChallengeResponseRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=OAuthDeviceCodeChallengeResponseRequest.d.ts.map