/** * 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. */ /** * Consent challenge response, any valid response request is valid * @export * @interface ConsentChallengeResponseRequest */ export interface ConsentChallengeResponseRequest { /** * * @type {string} * @memberof ConsentChallengeResponseRequest */ component?: string; /** * * @type {string} * @memberof ConsentChallengeResponseRequest */ token: string; } /** * Check if a given object implements the ConsentChallengeResponseRequest interface. */ export declare function instanceOfConsentChallengeResponseRequest(value: object): value is ConsentChallengeResponseRequest; export declare function ConsentChallengeResponseRequestFromJSON(json: any): ConsentChallengeResponseRequest; export declare function ConsentChallengeResponseRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConsentChallengeResponseRequest; export declare function ConsentChallengeResponseRequestToJSON(json: any): ConsentChallengeResponseRequest; export declare function ConsentChallengeResponseRequestToJSONTyped(value?: ConsentChallengeResponseRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ConsentChallengeResponseRequest.d.ts.map