Subversion Repositories SmartDukaan

Rev

Rev 21545 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 21545 Rev 22384
Line 11... Line 11...
11
    @SerializedName(value = "default_img_url")
11
    @SerializedName(value = "default_img_url")
12
    private String defaultImgUrl;
12
    private String defaultImgUrl;
13
    private String title;
13
    private String title;
14
    private String url;
14
    private String url;
15
    private String description;
15
    private String description;
-
 
16
    private String thumbnailImageUrl;
16
    
17
    
17
   
18
   
18
	public String getImageUrl() {
19
	public String getImageUrl() {
19
		return imageUrl;
20
		return imageUrl;
20
	}
21
	}
Line 55... Line 56...
55
	@Override
56
	@Override
56
	public String toString() {
57
	public String toString() {
57
		return "ProductPojo [id=" + id + ", imageUrl=" + imageUrl + ", defaultImgUrl=" + defaultImgUrl + ", title="
58
		return "ProductPojo [id=" + id + ", imageUrl=" + imageUrl + ", defaultImgUrl=" + defaultImgUrl + ", title="
58
				+ title + ", url=" + url + ", description=" + description + "]";
59
				+ title + ", url=" + url + ", description=" + description + "]";
59
	}
60
	}
-
 
61
	public String getThumbnailImageUrl() {
-
 
62
		return thumbnailImageUrl;
-
 
63
	}
-
 
64
	public void setThumbnailImageUrl(String thumbnailImageUrl) {
-
 
65
		this.thumbnailImageUrl = thumbnailImageUrl;
-
 
66
	}
60
	
67
	
61
}
68
}