Subversion Repositories SmartDukaan

Rev

Rev 9280 | Rev 10681 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9280 Rev 10673
Line 4... Line 4...
4
 
4
 
5
 
5
 
6
public class ProductPojo {
6
public class ProductPojo {
7
 
7
 
8
    @SerializedName(value = "image_url")
8
    @SerializedName(value = "image_url")
-
 
9
    private Long id;
9
	private String imageUrl;
10
	private String imageUrl;
10
    private String title;
11
    private String title;
11
    private String url;
12
    private String url;
12
    private String description;
13
    private String description;
13
    private double price;
14
    private Double price;
14
    private double mrp;
15
    private Double mrp;
15
    
16
    
16
    @SerializedName(value = "offer_text")
17
    @SerializedName(value = "offer_text")
17
    private String offerText;
18
    private String offerText;
18
    
19
    
19
	public String getImageUrl() {
20
	public String getImageUrl() {
Line 26... Line 27...
26
		return description;
27
		return description;
27
	}
28
	}
28
	public void setDescription(String description) {
29
	public void setDescription(String description) {
29
		this.description = description;
30
		this.description = description;
30
	}
31
	}
31
	public double getPrice() {
32
	public Double getPrice() {
32
		return price;
33
		return price;
33
	}
34
	}
34
	public void setPrice(double price) {
35
	public void setPrice(Double price) {
35
		this.price = price;
36
		this.price = price;
36
	}
37
	}
37
	public String getOfferText() {
38
	public String getOfferText() {
38
		return offerText;
39
		return offerText;
39
	}
40
	}
Line 50... Line 51...
50
		this.title = title;
51
		this.title = title;
51
	}
52
	}
52
	public String getTitle() {
53
	public String getTitle() {
53
		return title;
54
		return title;
54
	}
55
	}
55
	public void setMrp(double mrp) {
56
	public void setMrp(Double mrp) {
56
		this.mrp = mrp;
57
		this.mrp = mrp;
57
	}
58
	}
58
	public double getMrp() {
59
	public Double getMrp() {
59
		return mrp;
60
		return mrp;
60
	}
61
	}
-
 
62
	public void setId(Long id) {
-
 
63
		this.id = id;
-
 
64
	}
-
 
65
	public Long getId() {
-
 
66
		return id;
-
 
67
	}
61
    
68
    
62
}
69
}