Skip to content

Variable: BulkTransitionRoleAssignmentSchema

ts
const BulkTransitionRoleAssignmentSchema: ZodObject<{
  permissionCombinationId: ZodString;
  principalTypeAssignments: ZodArray<ZodObject<{
     principalType: ZodCustom<
        | string & object
        | "USER"
        | "GROUP"
        | "GUEST"
        | "ANONYMOUS"
        | "ALL_LICENSED_USERS_USER_CLASS"
        | "ALL_PRODUCT_ADMINS_USER_CLASS"
        | "APP", 
        | string & object
        | "USER"
        | "GROUP"
        | "GUEST"
        | "ANONYMOUS"
        | "ALL_LICENSED_USERS_USER_CLASS"
        | "ALL_PRODUCT_ADMINS_USER_CLASS"
       | "APP">;
     removeAccess: ZodBoolean;
     roleId: ZodOptional<ZodNullable<ZodString>>;
  }, $loose>>;
}, $loose>;

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