/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type ChaseOptions = { /** * Custom order comment */ comments?: string | null | undefined; }; /** @internal */ export type ChaseOptions$Outbound = { comments?: string | null | undefined; }; /** @internal */ export const ChaseOptions$outboundSchema: z.ZodType< ChaseOptions$Outbound, z.ZodTypeDef, ChaseOptions > = z.object({ comments: z.nullable(z.string()).optional(), }); export function chaseOptionsToJSON(chaseOptions: ChaseOptions): string { return JSON.stringify(ChaseOptions$outboundSchema.parse(chaseOptions)); }