
org.opentripplanner.service.vehiclerental.model.VehicleRentalSystemAppInformation 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.service.vehiclerental.model;
/**
* Based on the field rental_apps in {@ https://github.com/NABSA/gbfs/blob/master/gbfs.md#system_informationjson
*/
public class VehicleRentalSystemAppInformation {
public final String storeUri;
public final String discoveryUri;
public VehicleRentalSystemAppInformation(String storeUri, String discoveryUri) {
this.storeUri = storeUri;
this.discoveryUri = discoveryUri;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy