/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface SmsVerificationRetryRequest */ export interface SmsVerificationRetryRequest { /** * * @type {string} * @memberof SmsVerificationRetryRequest */ verificationUUID: string; /** * * @type {string} * @memberof SmsVerificationRetryRequest */ phoneCountryCode: string; /** * * @type {string} * @memberof SmsVerificationRetryRequest */ phoneNumber: string; /** * * @type {string} * @memberof SmsVerificationRetryRequest */ isoCountryCode: string; /** * When provided, used to verify that a captcha is valid and get the success/failure result from the captcha provider server-side. * @type {string} * @memberof SmsVerificationRetryRequest */ captchaToken?: string; } export declare function SmsVerificationRetryRequestFromJSON(json: any): SmsVerificationRetryRequest; export declare function SmsVerificationRetryRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SmsVerificationRetryRequest; export declare function SmsVerificationRetryRequestToJSON(value?: SmsVerificationRetryRequest | null): any;