diff options
author | CGantert345 <57003061+CGantert345@users.noreply.github.com> | 2020-01-03 10:47:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-03 10:47:21 +0100 |
commit | c3ee0f35f58125a7a2b2e29ac8db8abc169f1b87 (patch) | |
tree | 3f30e28833d113bd4be1515da247c45911a0d89a /src/org/uic/ticket/api/impl/SimpleVatDetail.java | |
parent | asn.1 java model (diff) | |
download | UIC-barcode-c3ee0f35f58125a7a2b2e29ac8db8abc169f1b87.tar UIC-barcode-c3ee0f35f58125a7a2b2e29ac8db8abc169f1b87.tar.gz UIC-barcode-c3ee0f35f58125a7a2b2e29ac8db8abc169f1b87.tar.bz2 UIC-barcode-c3ee0f35f58125a7a2b2e29ac8db8abc169f1b87.tar.lz UIC-barcode-c3ee0f35f58125a7a2b2e29ac8db8abc169f1b87.tar.xz UIC-barcode-c3ee0f35f58125a7a2b2e29ac8db8abc169f1b87.tar.zst UIC-barcode-c3ee0f35f58125a7a2b2e29ac8db8abc169f1b87.zip |
Diffstat (limited to 'src/org/uic/ticket/api/impl/SimpleVatDetail.java')
-rw-r--r-- | src/org/uic/ticket/api/impl/SimpleVatDetail.java | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/org/uic/ticket/api/impl/SimpleVatDetail.java b/src/org/uic/ticket/api/impl/SimpleVatDetail.java new file mode 100644 index 0000000..7c889d0 --- /dev/null +++ b/src/org/uic/ticket/api/impl/SimpleVatDetail.java @@ -0,0 +1,54 @@ +package org.uic.ticket.api.impl;
+
+
+import org.uic.ticket.api.spec.IVatDetail;
+
+public class SimpleVatDetail implements IVatDetail {
+
+
+ public int country;
+
+ public int percentage;
+
+ public Long amount;
+
+ public String vatId;
+
+ public int getCountry() {
+ return country;
+ }
+
+ public void setCountry(int country) {
+ this.country = country;
+ }
+
+ public int getPercentage() {
+ return percentage;
+ }
+
+ public void setPercentage(int percentage) {
+ this.percentage = percentage;
+ }
+
+ public Long getAmount() {
+ return amount;
+ }
+
+ public void setAmount(Long amount) {
+ this.amount = amount;
+ }
+
+ public String getVatId() {
+ return vatId;
+ }
+
+ public void setVatId(String vatId) {
+ this.vatId = vatId;
+ }
+
+
+
+
+
+
+}
|