/**
  * Creates a new ProductOfferId.
  *
  * @param offerId may be null if creating an "other" dimension
  */
 public static ProductOfferId createOfferId(@Nullable String offerId) {
   ProductOfferId productOfferId = new ProductOfferId();
   productOfferId.setValue(offerId);
   return productOfferId;
 }