br.com.anteros.payment.api.braspag.domain.antifraud.ShippingData 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;
import br.com.anteros.payment.api.braspag.domain.enums.ShippingMethodType;
public class ShippingData {
@JsonProperty("Addressee")
private String addressee ;
@JsonProperty("Phone")
private String phone ;
@JsonProperty("Method")
private ShippingMethodType method ;
public String getAddressee() {
return addressee;
}
public void setAddressee(String addressee) {
this.addressee = addressee;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public ShippingMethodType getMethod() {
return method;
}
public void setMethod(ShippingMethodType method) {
this.method = method;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy