/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type InBoundParseDomainDto = { inboundParseDomain?: string | undefined; }; /** @internal */ export type InBoundParseDomainDto$Outbound = { inboundParseDomain?: string | undefined; }; /** @internal */ export const InBoundParseDomainDto$outboundSchema: z.ZodType< InBoundParseDomainDto$Outbound, z.ZodTypeDef, InBoundParseDomainDto > = z.object({ inboundParseDomain: z.string().optional(), }); export function inBoundParseDomainDtoToJSON( inBoundParseDomainDto: InBoundParseDomainDto, ): string { return JSON.stringify( InBoundParseDomainDto$outboundSchema.parse(inBoundParseDomainDto), ); }