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