/** * 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. */ /** * User login challenge * @export * @interface UserLoginChallengeResponseRequest */ export interface UserLoginChallengeResponseRequest { /** * * @type {string} * @memberof UserLoginChallengeResponseRequest */ component?: string; /** * * @type {boolean} * @memberof UserLoginChallengeResponseRequest */ rememberMe: boolean; } /** * Check if a given object implements the UserLoginChallengeResponseRequest interface. */ export declare function instanceOfUserLoginChallengeResponseRequest(value: object): value is UserLoginChallengeResponseRequest; export declare function UserLoginChallengeResponseRequestFromJSON(json: any): UserLoginChallengeResponseRequest; export declare function UserLoginChallengeResponseRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserLoginChallengeResponseRequest; export declare function UserLoginChallengeResponseRequestToJSON(json: any): UserLoginChallengeResponseRequest; export declare function UserLoginChallengeResponseRequestToJSONTyped(value?: UserLoginChallengeResponseRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserLoginChallengeResponseRequest.d.ts.map