Skip to content

Variable: GetCustomContentAttachmentsSchema

ts
const GetCustomContentAttachmentsSchema: 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/getCustomContentAttachments.ts:5