/** * 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 EmailVerificationCreateResponse */ export interface EmailVerificationCreateResponse { /** * * @type {string} * @memberof EmailVerificationCreateResponse */ verificationUUID: string; /** * Email address that the verification was sent to * @type {string} * @memberof EmailVerificationCreateResponse */ email: string; } export declare function EmailVerificationCreateResponseFromJSON(json: any): EmailVerificationCreateResponse; export declare function EmailVerificationCreateResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailVerificationCreateResponse; export declare function EmailVerificationCreateResponseToJSON(value?: EmailVerificationCreateResponse | null): any;