
org.opentripplanner.ext.restapi.model.ApiItineraryFares 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.restapi.model;
import java.util.List;
import java.util.Map;
/**
* @param fare The Fares V1 fares.
* @param details The Fares V1 fare components.
* @param coveringItinerary The Fares V2 products that are valid for the entire Itinerary.
* @param legProducts The Fares V2 products that cover only parts of the legs of the
* itinerary, ie. the customer has to buy more than one ticket.
*/
public record ApiItineraryFares(
Map fare,
Map> details,
List coveringItinerary,
List legProducts
) {}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy