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

de.aipark.api.requestsResponse.getLiveParkEvents.GetLiveParkEventsRequest Maven / Gradle / Ivy

package de.aipark.api.requestsResponse.getLiveParkEvents;

import de.aipark.api.requestsResponse.Request;
import de.aipark.api.tile.Tile;
import io.swagger.annotations.ApiModelProperty;

import java.sql.Timestamp;

/**
 * Created by torgen on 17.12.17.
 */
public class GetLiveParkEventsRequest extends Request {
    private Tile tile;

    @ApiModelProperty(value = "from timestamp", dataType = "java.lang.Long", required = true, example = "1498568470000")
    private Timestamp fromTimestamp;

    @ApiModelProperty(value = "until timestamp", dataType = "java.lang.Long", required = true, example = "1514811670000")
    private Timestamp untilTimestamp;

    public GetLiveParkEventsRequest() {
    }

    public GetLiveParkEventsRequest(Tile tile, Timestamp fromTimestamp, Timestamp untilTimestamp) {
        this.tile = tile;
        this.fromTimestamp = fromTimestamp;
        this.untilTimestamp = untilTimestamp;
    }

    public Tile getTile() {
        return tile;
    }

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

    public Timestamp getFromTimestamp() {
        return fromTimestamp;
    }

    public void setFromTimestamp(Timestamp fromTimestamp) {
        this.fromTimestamp = fromTimestamp;
    }

    public Timestamp getUntilTimestamp() {
        return untilTimestamp;
    }

    public void setUntilTimestamp(Timestamp untilTimestamp) {
        this.untilTimestamp = untilTimestamp;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy