it.netgrid.woocommerce.model.FeeLineTax Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwcrc Show documentation
Show all versions of jwcrc Show documentation
JWCRC provides a client for the Woocommerce API v1. (2.6.x)
package it.netgrid.woocommerce.model;
import it.netgrid.woocommerce.CrudObject;
import java.math.BigDecimal;
import javax.xml.bind.annotation.XmlRootElement;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
@XmlRootElement
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class FeeLineTax implements CrudObject {
private Integer id;
private BigDecimal total;
private BigDecimal subtotal;
public FeeLineTax(){}
public BigDecimal getTotal() {
return total;
}
public void setTotal(BigDecimal total) {
this.total = total;
}
public BigDecimal getSubtotal() {
return subtotal;
}
public void setSubtotal(BigDecimal subtotal) {
this.subtotal = subtotal;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy