Variable: GetAttachmentCommentsSchema
ts
const GetAttachmentCommentsSchema: ZodObject<{
bodyFormat: ZodOptional<ZodEnum<{
atlas_doc_format: "atlas_doc_format";
storage: "storage";
}>>;
cursor: ZodOptional<ZodString>;
id: ZodString;
limit: ZodOptional<ZodNumber>;
sort: ZodOptional<ZodEnum<{
-created-date: "-created-date";
-modified-date: "-modified-date";
created-date: "created-date";
modified-date: "modified-date";
}>>;
version: ZodOptional<ZodNumber>;
}, $strip>;Defined in: src/v2/parameters/getAttachmentComments.ts:5