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

com.targomo.client.api.response.TransitStation Maven / Gradle / Ivy

There is a newer version: 0.42.0
Show newest version
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