Skip to content

Variable: CreateAttachmentSchema

ts
const CreateAttachmentSchema: ZodObject<{
  attachments: ZodCustom<
     | AttachmentInput
     | AttachmentInput[], 
     | AttachmentInput
    | AttachmentInput[]>;
  id: ZodString;
  status: ZodOptional<ZodEnum<{
     current: "current";
     draft: "draft";
  }>>;
}, $strip>;

Defined in: src/v1/parameters/createAttachment.ts:4