summaryrefslogtreecommitdiffstats
path: root/src/org/uic/barcode/ticket/api/spec/IVatDetail.java
blob: 4739415c8b90e14124a47d370896c809d097dd96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.uic.barcode.ticket.api.spec;

public interface IVatDetail {
	
	public int getCountry();
	
	public void setCountry(int country);
	
	public int getPercentage();
	
	public void setPercentage(int percentage);	
	
	public Long getAmount();
	
	public void setAmount(Long amount);
	
	public String getVatId();
	
	public void setVatId(String vatId);
	

}