public PaymentUnit()

in src/service-sdk/src/main/java/com/google/abmedge/payment/PaymentUnit.java [56:61]


  public PaymentUnit(UUID itemId, String name, BigDecimal quantity, BigDecimal totalCost) {
    this.itemId = itemId;
    this.name = name;
    this.quantity = quantity;
    this.totalCost = totalCost;
  }