office-alexander-logistics/office-alexander-logistics-app/src/main/java/com/alexanderlogistics/zoho/dto/ZohoTax.java

54 lines
990 B
Java

package com.alexanderlogistics.zoho.dto;
import jakarta.json.bind.annotation.JsonbProperty;
public class ZohoTax {
@JsonbProperty("tax_id")
private String taxId;
@JsonbProperty("tax_factor")
private float rate;
@JsonbProperty("tax_name")
private String taxName;
@JsonbProperty("tax_type")
private String taxType;
// Weitere Felder nach Bedarf
// Getter und Setter
public String getTaxId() {
return taxId;
}
public void setTaxId(String taxId) {
this.taxId = taxId;
}
public String getTaxName() {
return taxName;
}
public void setTaxName(String companyName) {
this.taxName = companyName;
}
public String getTaxType() {
return taxType;
}
public void setTaxType(String contactType) {
this.taxType = contactType;
}
public float getRate() {
return rate;
}
public void setRate(float rate) {
this.rate = rate;
}
}