Subversion Repositories SmartDukaan

Rev

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

Rev 11058 Rev 11762
Line 1... Line 1...
1
package in.shop2020.metamodel.util;
1
package in.shop2020.metamodel.util;
2
 
2
 
-
 
3
import java.util.List;
-
 
4
 
3
import com.google.gson.annotations.SerializedName;
5
import com.google.gson.annotations.SerializedName;
4
 
6
 
5
 
7
 
6
public class ProductPojo {
8
public class ProductPojo {
7
 
9
 
Line 11... Line 13...
11
    private String title;
13
    private String title;
12
    private String url;
14
    private String url;
13
    private String description;
15
    private String description;
14
    private Double price;
16
    private Double price;
15
    private Double mrp;
17
    private Double mrp;
-
 
18
    private List<ItemPojo> itemPojos;
16
    
19
    
17
    @SerializedName(value = "offer_text")
20
    @SerializedName(value = "offer_text")
18
    private String offerText;
21
    private String offerText;
19
    
22
    
20
	public String getImageUrl() {
23
	public String getImageUrl() {
Line 131... Line 134...
131
		this.id = id;
134
		this.id = id;
132
	}
135
	}
133
	public Long getId() {
136
	public Long getId() {
134
		return id;
137
		return id;
135
	}
138
	}
-
 
139
	public void setItemPojos(List<ItemPojo> itemPojos) {
-
 
140
		this.itemPojos = itemPojos;
-
 
141
	}
-
 
142
	public List<ItemPojo> getItemPojos() {
-
 
143
		return itemPojos;
136
    
144
	}
137
}
145
}