spring-cloud-gcp-samples/spring-cloud-gcp-data-spanner-template-sample/src/main/java/com/example/Trade.java [48:63]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public Trade(
      String tradeId,
      String action,
      Double price,
      Double shares,
      String symbol,
      String traderId,
      List<Double> curve) {
    this.tradeId = tradeId;
    this.action = action;
    this.price = price;
    this.shares = shares;
    this.symbol = symbol;
    this.traderId = traderId;
    this.curve = curve;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spring-cloud-gcp-samples/spring-cloud-gcp-data-spanner-repository-sample/src/main/java/com/example/Trade.java [48:63]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public Trade(
      String tradeId,
      String action,
      Double price,
      Double shares,
      String symbol,
      String traderId,
      List<Double> curve) {
    this.tradeId = tradeId;
    this.action = action;
    this.price = price;
    this.shares = shares;
    this.symbol = symbol;
    this.traderId = traderId;
    this.curve = curve;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



