public Order()

in business-model/src/main/java/com/google/cloud/orderbook/Order.java [27:33]


  public Order(long orderId, OrderBookEvent.Side side, long price, long quantity) {
    this.side = side;
    this.price = price;
    this.quantity = quantity;
    this.quantityRemaining = quantity;
    this.orderId = orderId;
  }