/** * 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 EmailVerificationCreateRequest */ export interface EmailVerificationCreateRequest { /** * Email address to verify * @type {string} * @memberof EmailVerificationCreateRequest */ 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 EmailVerificationCreateRequest */ captchaToken?: string; } export declare function EmailVerificationCreateRequestFromJSON(json: any): EmailVerificationCreateRequest; export declare function EmailVerificationCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailVerificationCreateRequest; export declare function EmailVerificationCreateRequestToJSON(value?: EmailVerificationCreateRequest | null): any;