import { z } from "zod"; const Bodyschema = z.object({ SerialNumber: z.string(), DispatchDocId: z.number(), FolderID: z.any(), Subject: z.string(), Comment: z.string().optional(), DelegatedUserEmail: z.string().email(), UserId: z.any(), DraftIds: z.string(), })