in common/src/main/java/org/apache/flink/training/exercises/common/datatypes/TaxiFare.java [45:56]
public TaxiFare(long rideId) {
DataGenerator g = new DataGenerator(rideId);
this.rideId = rideId;
this.taxiId = g.taxiId();
this.driverId = g.driverId();
this.startTime = g.startTime();
this.paymentType = g.paymentType();
this.tip = g.tip();
this.tolls = g.tolls();
this.totalFare = g.totalFare();
}