All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentripplanner.routing.vehicle_rental.VehicleRentalSystemAppInformation Maven / Gradle / Ivy

package org.opentripplanner.routing.vehicle_rental;

/**
 * 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