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

de.aipark.api.requestsResponse.getChargingStationsForTile.GetChargingStationsForTileResponse Maven / Gradle / Ivy

Go to download

AIPARK offers detailed parking information for more than 1.8 Mio parking areas in Germany with nationwide coverage. Additionally, accurate occupancy predictions are derived using data from a network of more than 5 million smartphones. Use the AIPARK API Explorer application to try out and test the interface. Please send a request via email if you are a developer and require an API key. We'll be in touch with you shortly. This application is provided via a demo backend environment. Please note that API load tests do not reflect the performance of the productive system. Mail: [email protected]

There is a newer version: 30.06
Show newest version
package de.aipark.api.requestsResponse.getChargingStationsForTile;

import de.aipark.api.chargingstation.ChargingStation;
import de.aipark.api.tile.Tile;

import java.util.ArrayList;
import java.util.List;

/**
 * Created by torgen on 12.02.18.
 */
public class GetChargingStationsForTileResponse {
    private Tile tile;
    private List chargingStations;

    public GetChargingStationsForTileResponse() {
        chargingStations = new ArrayList();
    }

    public GetChargingStationsForTileResponse(Tile tile, List chargingStations) {
        this.tile = tile;
        this.chargingStations = chargingStations;
    }

    public Tile getTile() {
        return tile;
    }

    public void setTile(Tile tile) {
        this.tile = tile;
    }

    public List getChargingStations() {
        return chargingStations;
    }

    public void setChargingStations(List chargingStations) {
        this.chargingStations = chargingStations;
    }

    @Override
    public String toString() {
        return "GetChargingStationsForTileResponse{" +
                "tile=" + tile +
                ", chargingStations=" + chargingStations +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy