/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type VerificationEmailRequest = { userId: string; }; /** @internal */ export type VerificationEmailRequest$Outbound = { userId: string; }; /** @internal */ export const VerificationEmailRequest$outboundSchema: z.ZodType< VerificationEmailRequest$Outbound, z.ZodTypeDef, VerificationEmailRequest > = z.object({ userId: z.string(), }); export function verificationEmailRequestToJSON( verificationEmailRequest: VerificationEmailRequest, ): string { return JSON.stringify( VerificationEmailRequest$outboundSchema.parse(verificationEmailRequest), ); }