Subversion Repositories SmartDukaan

Rev

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

Rev 11762 Rev 20703
Line 8... Line 8...
8
public class ProductPojo {
8
public class ProductPojo {
9
 
9
 
10
    private Long id;
10
    private Long id;
11
    @SerializedName(value = "image_url")
11
    @SerializedName(value = "image_url")
12
	private String imageUrl;
12
	private String imageUrl;
-
 
13
    @SerializedName(value = "default_img_url")
-
 
14
    private String defaultImgUrl;
13
    private String title;
15
    private String title;
14
    private String url;
16
    private String url;
15
    private String description;
17
    private String description;
16
    private Double price;
18
    private Double price;
17
    private Double mrp;
19
    private Double mrp;
Line 140... Line 142...
140
		this.itemPojos = itemPojos;
142
		this.itemPojos = itemPojos;
141
	}
143
	}
142
	public List<ItemPojo> getItemPojos() {
144
	public List<ItemPojo> getItemPojos() {
143
		return itemPojos;
145
		return itemPojos;
144
	}
146
	}
-
 
147
	public void setDefaultImgUrl(String defaultImgUrl) {
-
 
148
		this.defaultImgUrl = defaultImgUrl;
-
 
149
	}
-
 
150
	public String getDefaultImgUrl() {
-
 
151
		return defaultImgUrl;
-
 
152
	}
145
}
153
}