Variable: GetBlogPostInlineCommentsSchema
ts
const GetBlogPostInlineCommentsSchema: ZodObject<{
bodyFormat: ZodOptional<ZodEnum<{
atlas_doc_format: "atlas_doc_format";
storage: "storage";
}>>;
cursor: ZodOptional<ZodString>;
id: ZodNumber;
limit: ZodOptional<ZodNumber>;
resolutionStatus: ZodOptional<ZodArray<ZodEnum<{
dangling: "dangling";
open: "open";
reopened: "reopened";
resolved: "resolved";
}>>>;
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/getBlogPostInlineComments.ts:5