
org.opentripplanner.ext.ridehailing.model.ArrivalTime 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;
/**
* Model of estimated arrival times of service from a ride hailing company
* @param duration The estimated time it takes for the vehicle to arrive.
*/
public record ArrivalTime(
RideHailingProvider provider,
String rideType,
String displayName,
Duration duration
)
implements Ride {}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy