Variable: GetAttachmentsSchema
ts
const GetAttachmentsSchema: ZodObject<{
cursor: ZodOptional<ZodString>;
filename: ZodOptional<ZodString>;
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/getAttachments.ts:5