Variable: GetBlogPostFooterCommentsSchema
ts
const GetBlogPostFooterCommentsSchema: ZodObject<{
bodyFormat: ZodOptional<ZodEnum<{
atlas_doc_format: "atlas_doc_format";
storage: "storage";
}>>;
cursor: ZodOptional<ZodString>;
id: ZodNumber;
limit: ZodOptional<ZodNumber>;
sort: ZodOptional<ZodEnum<{
-created-date: "-created-date";
-modified-date: "-modified-date";
created-date: "created-date";
modified-date: "modified-date";
}>>;
status: ZodOptional<ZodArray<ZodEnum<{
current: "current";
deleted: "deleted";
draft: "draft";
historical: "historical";
trashed: "trashed";
}>>>;
}, $strip>;Defined in: src/v2/parameters/getBlogPostFooterComments.ts:5