br.com.anteros.payment.api.braspag.domain.antifraud.TravelLegData 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 com.fasterxml.jackson.annotation.JsonProperty;
public class TravelLegData {
@JsonProperty("Destination")
private String destination ;
@JsonProperty("Origin")
private String origin ;
public String getDestination() {
return destination;
}
public void setDestination(String destination) {
this.destination = destination;
}
public String getOrigin() {
return origin;
}
public void setOrigin(String origin) {
this.origin = origin;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy