Skip to content

Variable: BulkTransitionCombinationEntrySchema

ts
const BulkTransitionCombinationEntrySchema: ZodObject<{
  combinationId: ZodString;
  permissions: ZodArray<ZodObject<{
     displayName: ZodString;
     id: ZodString;
  }, $loose>>;
  principalCount: ZodNumber;
  principalTypes: ZodArray<ZodEnum<{
     ALL_LICENSED_USERS_USER_CLASS: "ALL_LICENSED_USERS_USER_CLASS";
     ALL_PRODUCT_ADMINS_USER_CLASS: "ALL_PRODUCT_ADMINS_USER_CLASS";
     ANONYMOUS: "ANONYMOUS";
     APP: "APP";
     GROUP: "GROUP";
     GUEST: "GUEST";
     TEAM: "TEAM";
     USER: "USER";
  }>>;
  spaceCount: ZodNumber;
}, $loose>;

Defined in: src/v2/models/bulkTransitionCombinationEntry.ts:5