Subversion Repositories SmartDukaan

Rev

Rev 10673 | Rev 11058 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package in.shop2020.metamodel.util;

import com.google.gson.annotations.SerializedName;


public class ProductPojo {

    private Long id;
    @SerializedName(value = "image_url")
        private String imageUrl;
    private String title;
    private String url;
    private String description;
    private Double price;
    private Double mrp;
    
    @SerializedName(value = "offer_text")
    private String offerText;
    
        public String getImageUrl() {
                return imageUrl;
        }
        public void setImageUrl(String imageUrl) {
                this.imageUrl = imageUrl;
        }
        public String getDescription() {
                return description;
        }
        public void setDescription(String description) {
                this.description = description;
        }
        public Double getPrice() {
                return price;
        }
        public void setPrice(Double price) {
                this.price = price;
        }
        public String getOfferText() {
                return offerText;
        }
        public void setOfferText(String offerText) {
                this.offerText = offerText;
        }
        public void setUrl(String url) {
                this.url = url;
        }
        public String getUrl() {
                return url;
        }
        public void setTitle(String title) {
                this.title = title;
        }
        public String getTitle() {
                return title;
        }
        public void setMrp(Double mrp) {
                this.mrp = mrp;
        }
        public Double getMrp() {
                return mrp;
        }
        public void setId(Long id) {
                this.id = id;
        }
        public Long getId() {
                return id;
        }
    
}