
org.opentripplanner.ext.ridehailing.model.RideEstimate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
The newest version!
package org.opentripplanner.ext.ridehailing.model;
import java.time.Duration;
import org.opentripplanner.transit.model.basic.Money;
/**
* A class to model the estimated ride time while using service from a car hailing
* company
* @param arrival The duration it takes for the vehicle to arrive.
*/
public record RideEstimate(
RideHailingProvider provider,
Duration arrival,
Money minPrice,
Money maxPrice,
String rideType,
String productName
)
implements Ride {}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy