/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type InviteMemberInputBody = { /** * Email of the user */ email: string; }; /** @internal */ export type InviteMemberInputBody$Outbound = { email: string; }; /** @internal */ export const InviteMemberInputBody$outboundSchema: z.ZodType< InviteMemberInputBody$Outbound, z.ZodTypeDef, InviteMemberInputBody > = z.object({ email: z.string(), }); export function inviteMemberInputBodyToJSON( inviteMemberInputBody: InviteMemberInputBody, ): string { return JSON.stringify( InviteMemberInputBody$outboundSchema.parse(inviteMemberInputBody), ); }