Subversion Repositories SmartDukaan

Rev

Rev 4765 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4585 rajveer 1
package in.shop2020.support.models;
2
import com.thoughtworks.xstream.annotations.XStreamAlias;
3
 
4
@XStreamAlias("billingupdate")
5
public class BillingUpdate {
6
	private String orderId;
7
	private String invoiceNumber;
8
	private String billingTimestamp;
9
 
10
	public void setOrderId(String orderId) {
11
		this.orderId = orderId;
12
	}
13
	public String getOrderId() {
14
		return orderId;
15
	}
16
	public void setInvoiceNumber(String invoiceNumber) {
17
		this.invoiceNumber = invoiceNumber;
18
	}
19
	public String getInvoiceNumber() {
20
		return invoiceNumber;
21
	}
22
	public void setBillingTimestamp(String billingTimestamp) {
23
		this.billingTimestamp = billingTimestamp;
24
	}
25
	public String getBillingTimestamp() {
26
		return billingTimestamp;
27
	}
28
 
29
	@Override
30
	public String toString() {
31
		return "BillingUpdate [orderId=" + orderId + ", invoiceNumber="
32
				+ invoiceNumber + ", billingTimestamp=" + billingTimestamp
33
				+ "]";
34
	}
35
}