Subversion Repositories SmartDukaan

Rev

Rev 9219 | Rev 10673 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
9219 amit.gupta 1
package in.shop2020.metamodel.util;
2
 
3
import com.google.gson.annotations.SerializedName;
4
 
5
 
6
public class ProductPojo {
7
 
9280 amit.gupta 8
    @SerializedName(value = "image_url")
9219 amit.gupta 9
	private String imageUrl;
10
    private String title;
11
    private String url;
12
    private String description;
13
    private double price;
14
    private double mrp;
15
 
16
    @SerializedName(value = "offer_text")
17
    private String offerText;
18
 
19
	public String getImageUrl() {
20
		return imageUrl;
21
	}
22
	public void setImageUrl(String imageUrl) {
23
		this.imageUrl = imageUrl;
24
	}
25
	public String getDescription() {
26
		return description;
27
	}
28
	public void setDescription(String description) {
29
		this.description = description;
30
	}
31
	public double getPrice() {
32
		return price;
33
	}
34
	public void setPrice(double price) {
35
		this.price = price;
36
	}
37
	public String getOfferText() {
38
		return offerText;
39
	}
40
	public void setOfferText(String offerText) {
41
		this.offerText = offerText;
42
	}
43
	public void setUrl(String url) {
44
		this.url = url;
45
	}
46
	public String getUrl() {
47
		return url;
48
	}
49
	public void setTitle(String title) {
50
		this.title = title;
51
	}
52
	public String getTitle() {
53
		return title;
54
	}
55
	public void setMrp(double mrp) {
56
		this.mrp = mrp;
57
	}
58
	public double getMrp() {
59
		return mrp;
60
	}
61
 
62
}