org.opentripplanner.api.model.ApiStopShort 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
package org.opentripplanner.api.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
public class ApiStopShort {
public String id;
public String code;
public String name;
public double lat;
public double lon;
public String url;
/**
* The fully qualified parent station id including the feedId.
*/
public String stationId;
/** @deprecated Use "stationId" instead */
@Deprecated
public String cluster;
/** Distance to the stop when it is returned from a location-based query. */
@JsonInclude(Include.NON_NULL)
public Integer dist;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy