
com.targomo.client.api.response.TransitStation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Java client library for easy usage of Targomo web services.
package com.targomo.client.api.response;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Getter;
import lombok.Setter;
import java.util.Set;
@Setter
@Getter
@JsonIgnoreProperties(ignoreUnknown = true)
public class TransitStation {
private int id;
private String name;
private Double lat;
private Double lng;
private String edgeType;
private int edgeWeight;
private Set nextStops;
@Setter
@Getter
@JsonIgnoreProperties(ignoreUnknown = true)
public static class ReachableTransitStopTime {
private int time;
private String name;
private String line;
private String endStation;
private int routeType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy