Skip to content

Variable: PageWithCursorGetPlanResponseForPageSchema

ts
const PageWithCursorGetPlanResponseForPageSchema: ZodObject<{
  cursor: ZodOptional<ZodString>;
  last: ZodOptional<ZodBoolean>;
  nextPageCursor: ZodOptional<ZodString>;
  size: ZodOptional<ZodNumber>;
  total: ZodOptional<ZodNumber>;
  values: ZodOptional<ZodArray<ZodObject<{
     id: ZodString;
     issueSources: ZodOptional<ZodArray<ZodObject<{
        type: ZodCustom<..., ...>;
        value: ZodNumber;
     }, $loose>>>;
     name: ZodString;
     scenarioId: ZodString;
     status: ZodCustom<string & object | "Active" | "Trashed" | "Archived", string & object | "Active" | "Trashed" | "Archived">;
  }, $loose>>>;
}, $loose>;

Defined in: src/cloud/models/pageWithCursorGetPlanResponseForPage.ts:5