Skip to content

Variable: BulkTransitionCombinationEntrySchema

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

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