Subversion Repositories SmartDukaan

Rev

Rev 9280 | Go to most recent revision | Details | 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
 
8
    @Override
9
	public String toString() {
10
		return "ProductPojo [imageUrl=" + imageUrl + ", title=" + title
11
				+ ", url=" + url + ", description=" + description + ", price="
12
				+ price + ", mrp=" + mrp + ", offerText=" + offerText + "]";
13
	}
14
	@SerializedName(value = "image_url")
15
	private String imageUrl;
16
    private String title;
17
    private String url;
18
    private String description;
19
    private double price;
20
    private double mrp;
21
 
22
    @SerializedName(value = "offer_text")
23
    private String offerText;
24
 
25
	public String getImageUrl() {
26
		return imageUrl;
27
	}
28
	public void setImageUrl(String imageUrl) {
29
		this.imageUrl = imageUrl;
30
	}
31
	public String getDescription() {
32
		return description;
33
	}
34
	public void setDescription(String description) {
35
		this.description = description;
36
	}
37
	public double getPrice() {
38
		return price;
39
	}
40
	public void setPrice(double price) {
41
		this.price = price;
42
	}
43
	public String getOfferText() {
44
		return offerText;
45
	}
46
	public void setOfferText(String offerText) {
47
		this.offerText = offerText;
48
	}
49
	public void setUrl(String url) {
50
		this.url = url;
51
	}
52
	public String getUrl() {
53
		return url;
54
	}
55
	public void setTitle(String title) {
56
		this.title = title;
57
	}
58
	public String getTitle() {
59
		return title;
60
	}
61
	public void setMrp(double mrp) {
62
		this.mrp = mrp;
63
	}
64
	public double getMrp() {
65
		return mrp;
66
	}
67
 
68
}