summaryrefslogtreecommitdiffstats
path: root/src/org/uic/ticket/api/spec/IVatDetail.java
blob: 0fba01901e3f2ee184a95efcf5a781bd4c405989 (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.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);
	

}