MCPcopy Create free account
hub / github.com/FiscalAPI/fiscalapi-java / ItemTax

Class ItemTax

src/main/java/com/fiscalapi/models/invoicing/ItemTax.java:9–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7
8// Impuestos aplicables al concepto
9public class ItemTax {
10 private String taxCode;
11 private String taxTypeCode;
12 @JsonSerialize(using = BigDecimalSerializer.class)
13 private BigDecimal taxRate;
14 private String taxFlagCode;
15
16 public String getTaxCode() {
17 return taxCode;
18 }
19 public void setTaxCode(String taxCode) {
20 this.taxCode = taxCode;
21 }
22 public String getTaxTypeCode() {
23 return taxTypeCode;
24 }
25 public void setTaxTypeCode(String taxTypeCode) {
26 this.taxTypeCode = taxTypeCode;
27 }
28 public BigDecimal getTaxRate() {
29 return taxRate;
30 }
31
32 public void setTaxRate(BigDecimal taxRate) {
33 this.taxRate = taxRate;
34 }
35 public String getTaxFlagCode() {
36 return taxFlagCode;
37 }
38 public void setTaxFlagCode(String taxFlagCode) {
39 this.taxFlagCode = taxFlagCode;
40 }
41}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected