de.aipark.api.requestsResponse.getCostsForArea.GetCostsForAreaEntry Maven / Gradle / Ivy
package de.aipark.api.requestsResponse.getCostsForArea;
import io.swagger.annotations.ApiModelProperty;
import java.sql.Timestamp;
/**
* Created by torgen on 21.01.18.
*/
public class GetCostsForAreaEntry {
@ApiModelProperty(value = "parking area id for the request", dataType = "java.lang.Long", required = true, example = "2612812")
private Long parkingAreaId;
@ApiModelProperty(value = "from timestamp", dataType = "java.lang.Long", required = true, example = "1498568470000")
private Timestamp from;
@ApiModelProperty(value = "until timestamp", dataType = "java.lang.Long", required = true, example = "1498575670000")
private Timestamp until;
public GetCostsForAreaEntry() {
}
public GetCostsForAreaEntry(Long parkingAreaId, Timestamp from, Timestamp until) {
this.parkingAreaId = parkingAreaId;
this.from = from;
this.until = until;
}
public Long getParkingAreaId() {
return parkingAreaId;
}
public void setParkingAreaId(Long parkingAreaId) {
this.parkingAreaId = parkingAreaId;
}
public Timestamp getFrom() {
return from;
}
public void setFrom(Timestamp from) {
this.from = from;
}
public Timestamp getUntil() {
return until;
}
public void setUntil(Timestamp until) {
this.until = until;
}
}