Skip to content

Variable: GetAttachmentCommentsSchema

ts
const GetAttachmentCommentsSchema: ZodObject<{
  bodyFormat: ZodOptional<ZodCustom<"storage" | string & object | "atlas_doc_format", "storage" | string & object | "atlas_doc_format">>;
  cursor: ZodOptional<ZodString>;
  id: ZodString;
  limit: ZodOptional<ZodNumber>;
  sort: ZodOptional<ZodCustom<
     | string & object
     | "created-date"
     | "-created-date"
     | "modified-date"
     | "-modified-date", 
     | string & object
     | "created-date"
     | "-created-date"
     | "modified-date"
    | "-modified-date">>;
  version: ZodOptional<ZodNumber>;
}, $strip>;

Defined in: src/v2/parameters/getAttachmentComments.ts:5