br.com.anteros.payment.api.braspag.domain.antifraud.TravelData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Anteros-Payment-Api Show documentation
Show all versions of Anteros-Payment-Api Show documentation
Anteros Payment Integration Api for Java.
The newest version!
package br.com.anteros.payment.api.braspag.domain.antifraud;
import java.util.Date;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
public class TravelData {
@JsonProperty("Route")
private String route ;
@JsonProperty("DepartureTime")
private Date departureTime ;
@JsonProperty("JourneyType")
private String journeyType ;
@JsonProperty("Legs")
private List legs ;
public String getRoute() {
return route;
}
public void setRoute(String route) {
this.route = route;
}
public Date getDepartureTime() {
return departureTime;
}
public void setDepartureTime(Date departureTime) {
this.departureTime = departureTime;
}
public String getJourneyType() {
return journeyType;
}
public void setJourneyType(String journeyType) {
this.journeyType = journeyType;
}
public List getLegs() {
return legs;
}
public void setLegs(List legs) {
this.legs = legs;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy