Skip to content

Variable: PageGroupDetailsSchema

ts
const PageGroupDetailsSchema: ZodObject<{
  isLast: ZodOptional<ZodBoolean>;
  maxResults: ZodOptional<ZodNumber>;
  nextPage: ZodOptional<ZodURL>;
  self: ZodOptional<ZodURL>;
  startAt: ZodOptional<ZodNumber>;
  total: ZodOptional<ZodNumber>;
  values: ZodOptional<ZodArray<ZodObject<{
     groupId: ZodOptional<ZodNullable<ZodString>>;
     name: ZodOptional<ZodString>;
  }, $loose>>>;
}, $loose>;

Defined in: src/cloud/models/pageGroupDetails.ts:6

A page of items.