Variable: GetBlogpostAttachmentsSchema
ts
const GetBlogpostAttachmentsSchema: ZodObject<{
cursor: ZodOptional<ZodString>;
filename: ZodOptional<ZodString>;
id: ZodNumber;
limit: ZodOptional<ZodNumber>;
mediaType: ZodOptional<ZodString>;
sort: ZodOptional<ZodEnum<{
-created-date: "-created-date";
-modified-date: "-modified-date";
created-date: "created-date";
modified-date: "modified-date";
}>>;
status: ZodOptional<ZodArray<ZodEnum<{
archived: "archived";
current: "current";
trashed: "trashed";
}>>>;
}, $strip>;Defined in: src/v2/parameters/getBlogpostAttachments.ts:4