All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.netgrid.woocommerce.model.FeeLineTax Maven / Gradle / Ivy

There is a newer version: 1.2.5
Show newest version
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