/** * 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 EmailVerificationRetryRequest */ export interface EmailVerificationRetryRequest { /** * * @type {string} * @memberof EmailVerificationRetryRequest */ verificationUUID: string; /** * Email address to resend the verification to * @type {string} * @memberof EmailVerificationRetryRequest */ email: 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 EmailVerificationRetryRequest */ captchaToken?: string; } export declare function EmailVerificationRetryRequestFromJSON(json: any): EmailVerificationRetryRequest; export declare function EmailVerificationRetryRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailVerificationRetryRequest; export declare function EmailVerificationRetryRequestToJSON(value?: EmailVerificationRetryRequest | null): any;