br.com.anteros.payment.api.braspag.domain.antifraud.CartData 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.List;
import com.fasterxml.jackson.annotation.JsonProperty;
public class CartData {
@JsonProperty("IsGift")
private boolean isGift;
@JsonProperty("ReturnsAccepted")
private boolean returnsAccepted;
@JsonProperty("items")
private List Items;
public boolean isGift() {
return isGift;
}
public void setGift(boolean isGift) {
this.isGift = isGift;
}
public boolean isReturnsAccepted() {
return returnsAccepted;
}
public void setReturnsAccepted(boolean returnsAccepted) {
this.returnsAccepted = returnsAccepted;
}
public List getItems() {
return Items;
}
public void setItems(List items) {
Items = items;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy