/** * 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. */ /** * Password challenge response * @export * @interface PasswordChallengeResponseRequest */ export interface PasswordChallengeResponseRequest { /** * * @type {string} * @memberof PasswordChallengeResponseRequest */ component?: string; /** * * @type {string} * @memberof PasswordChallengeResponseRequest */ password: string; } /** * Check if a given object implements the PasswordChallengeResponseRequest interface. */ export declare function instanceOfPasswordChallengeResponseRequest(value: object): value is PasswordChallengeResponseRequest; export declare function PasswordChallengeResponseRequestFromJSON(json: any): PasswordChallengeResponseRequest; export declare function PasswordChallengeResponseRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PasswordChallengeResponseRequest; export declare function PasswordChallengeResponseRequestToJSON(json: any): PasswordChallengeResponseRequest; export declare function PasswordChallengeResponseRequestToJSONTyped(value?: PasswordChallengeResponseRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PasswordChallengeResponseRequest.d.ts.map