Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9404 vikram.rag 1
package inventory;
2
 
3
import com.google.gson.annotations.SerializedName;
4
 
5
public class Inventory {
6
	String supc;
7
	String sellerSku;
8
	String productName;
9
	String pageUrl;
10
	boolean skipRow;
11
	long availableInventory;
12
	String lastUpdated;
13
	boolean pendingUpdate;
14
	long pendingAvailableInventory;
15
	boolean live;
16
	public String getSupc() {
17
		return supc;
18
	}
19
	public void setSupc(String supc) {
20
		this.supc = supc;
21
	}
22
	public String getSellerSku() {
23
		return sellerSku;
24
	}
25
	public void setSellerSku(String sellerSku) {
26
		this.sellerSku = sellerSku;
27
	}
28
	public String getProductName() {
29
		return productName;
30
	}
31
	public void setProductName(String productName) {
32
		this.productName = productName;
33
	}
34
	public String getPageUrl() {
35
		return pageUrl;
36
	}
37
	public void setPageUrl(String pageUrl) {
38
		this.pageUrl = pageUrl;
39
	}
40
	public boolean isSkipRow() {
41
		return skipRow;
42
	}
43
	public void setSkipRow(boolean skipRow) {
44
		this.skipRow = skipRow;
45
	}
46
	public long getAvailableInventory() {
47
		return availableInventory;
48
	}
49
	public void setAvailableInventory(long availableInventory) {
50
		this.availableInventory = availableInventory;
51
	}
52
	public String getLastUpdated() {
53
		return lastUpdated;
54
	}
55
	public void setLastUpdated(String lastUpdated) {
56
		this.lastUpdated = lastUpdated;
57
	}
58
	public boolean isPendingUpdate() {
59
		return pendingUpdate;
60
	}
61
	public void setPendingUpdate(boolean pendingUpdate) {
62
		this.pendingUpdate = pendingUpdate;
63
	}
64
	public long getPendingAvailableInventory() {
65
		return pendingAvailableInventory;
66
	}
67
	public void setPendingAvailableInventory(long pendingAvailableInventory) {
68
		this.pendingAvailableInventory = pendingAvailableInventory;
69
	}
70
	public boolean isLive() {
71
		return live;
72
	}
73
	public void setLive(boolean live) {
74
		this.live = live;
75
	}
76
 
77
}