Subversion Repositories SmartDukaan

Rev

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

Rev 9219 Rev 9280
Line 3... Line 3...
3
import com.google.gson.annotations.SerializedName;
3
import com.google.gson.annotations.SerializedName;
4
 
4
 
5
 
5
 
6
public class ProductPojo {
6
public class ProductPojo {
7
 
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")
8
    @SerializedName(value = "image_url")
15
	private String imageUrl;
9
	private String imageUrl;
16
    private String title;
10
    private String title;
17
    private String url;
11
    private String url;
18
    private String description;
12
    private String description;
19
    private double price;
13
    private double price;