
org.opentripplanner.ext.ridehailing.service.uber.UberTripTimeEstimateResponse 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.service.uber;
import java.util.List;
public record UberTripTimeEstimateResponse(List prices) {
public record UberTripTimeEstimate(
String currency_code,
int duration,
int high_estimate,
int low_estimate,
String product_id,
String display_name
) {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy