Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
14630 manish.sha 1
package utilities;
2
 
3
import com.google.gson.annotations.Expose;
4
 
5
public class VendorPendingProductOfferDisplayDTO {
6
 
7
    @Expose
8
    private String attributes;
9
    @Expose
10
    private String dispatchCategory;
11
    @Expose
12
    private String freebies;
13
    @Expose
14
    private String imageUrl;
15
    @Expose
16
    private String name;
17
    @Expose
18
    private String pdpUrl;
19
    @Expose
20
    private int pendingQuantity;
21
    @Expose
22
    private String productCode;
23
    @Expose
24
    private int vendorSKU;
25
 
26
    /**
27
     * 
28
     * @return
29
     *     The attributes
30
     */
31
    public String getAttributes() {
32
        return attributes;
33
    }
34
 
35
    /**
36
     * 
37
     * @param attributes
38
     *     The attributes
39
     */
40
    public void setAttributes(String attributes) {
41
        this.attributes = attributes;
42
    }
43
 
44
    /**
45
     * 
46
     * @return
47
     *     The dispatchCategory
48
     */
49
    public String getDispatchCategory() {
50
        return dispatchCategory;
51
    }
52
 
53
    /**
54
     * 
55
     * @param dispatchCategory
56
     *     The dispatchCategory
57
     */
58
    public void setDispatchCategory(String dispatchCategory) {
59
        this.dispatchCategory = dispatchCategory;
60
    }
61
 
62
    /**
63
     * 
64
     * @return
65
     *     The freebies
66
     */
67
    public String getFreebies() {
68
        return freebies;
69
    }
70
 
71
    /**
72
     * 
73
     * @param freebies
74
     *     The freebies
75
     */
76
    public void setFreebies(String freebies) {
77
        this.freebies = freebies;
78
    }
79
 
80
    /**
81
     * 
82
     * @return
83
     *     The imageUrl
84
     */
85
    public String getImageUrl() {
86
        return imageUrl;
87
    }
88
 
89
    /**
90
     * 
91
     * @param imageUrl
92
     *     The imageUrl
93
     */
94
    public void setImageUrl(String imageUrl) {
95
        this.imageUrl = imageUrl;
96
    }
97
 
98
    /**
99
     * 
100
     * @return
101
     *     The name
102
     */
103
    public String getName() {
104
        return name;
105
    }
106
 
107
    /**
108
     * 
109
     * @param name
110
     *     The name
111
     */
112
    public void setName(String name) {
113
        this.name = name;
114
    }
115
 
116
    /**
117
     * 
118
     * @return
119
     *     The pdpUrl
120
     */
121
    public String getPdpUrl() {
122
        return pdpUrl;
123
    }
124
 
125
    /**
126
     * 
127
     * @param pdpUrl
128
     *     The pdpUrl
129
     */
130
    public void setPdpUrl(String pdpUrl) {
131
        this.pdpUrl = pdpUrl;
132
    }
133
 
134
    /**
135
     * 
136
     * @return
137
     *     The pendingQuantity
138
     */
139
    public int getPendingQuantity() {
140
        return pendingQuantity;
141
    }
142
 
143
    /**
144
     * 
145
     * @param pendingQuantity
146
     *     The pendingQuantity
147
     */
148
    public void setPendingQuantity(int pendingQuantity) {
149
        this.pendingQuantity = pendingQuantity;
150
    }
151
 
152
    /**
153
     * 
154
     * @return
155
     *     The productCode
156
     */
157
    public String getProductCode() {
158
        return productCode;
159
    }
160
 
161
    /**
162
     * 
163
     * @param productCode
164
     *     The productCode
165
     */
166
    public void setProductCode(String productCode) {
167
        this.productCode = productCode;
168
    }
169
 
170
    /**
171
     * 
172
     * @return
173
     *     The vendorSKU
174
     */
175
    public int getVendorSKU() {
176
        return vendorSKU;
177
    }
178
 
179
    /**
180
     * 
181
     * @param vendorSKU
182
     *     The vendorSKU
183
     */
184
    public void setVendorSKU(int vendorSKU) {
185
        this.vendorSKU = vendorSKU;
186
    }
187
 
188
}