/** * 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. */ /** * SMS Challenge response, device is set by get_response_instance * @export * @interface AuthenticatorSMSChallengeResponseRequest */ export interface AuthenticatorSMSChallengeResponseRequest { /** * * @type {string} * @memberof AuthenticatorSMSChallengeResponseRequest */ component?: string; /** * * @type {number} * @memberof AuthenticatorSMSChallengeResponseRequest */ code?: number; /** * * @type {string} * @memberof AuthenticatorSMSChallengeResponseRequest */ phoneNumber?: string; } /** * Check if a given object implements the AuthenticatorSMSChallengeResponseRequest interface. */ export declare function instanceOfAuthenticatorSMSChallengeResponseRequest(value: object): value is AuthenticatorSMSChallengeResponseRequest; export declare function AuthenticatorSMSChallengeResponseRequestFromJSON(json: any): AuthenticatorSMSChallengeResponseRequest; export declare function AuthenticatorSMSChallengeResponseRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorSMSChallengeResponseRequest; export declare function AuthenticatorSMSChallengeResponseRequestToJSON(json: any): AuthenticatorSMSChallengeResponseRequest; export declare function AuthenticatorSMSChallengeResponseRequestToJSONTyped(value?: AuthenticatorSMSChallengeResponseRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorSMSChallengeResponseRequest.d.ts.map