package etelligens.com.foodsafety.model; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public class GoGrabModal { @SerializedName("id") @Expose private Integer id; @SerializedName("cat_id") @Expose private Integer catId; @SerializedName("outlet_id") @Expose private String outletId; @SerializedName("label_id") @Expose private Integer labelId; @SerializedName("user_id") @Expose private Integer userId; @SerializedName("product_unique_id") @Expose private String productUniqueId; @SerializedName("barcode_unique_num") @Expose private String barcodeUniqueNum; @SerializedName("quantity") @Expose private Integer quantity; @SerializedName("name") @Expose private String name; @SerializedName("you_tube_url") @Expose private String youTubeUrl; @SerializedName("slug") @Expose private String slug; @SerializedName("barcode_img_path") @Expose private String barcodeImgPath; @SerializedName("product_price") @Expose private String productPrice; @SerializedName("ingredient") @Expose private String ingredient; @SerializedName("allergens") @Expose private String allergens; @SerializedName("enjoy_by") @Expose private String enjoyBy; @SerializedName("print_logo") @Expose private Integer printLogo; @SerializedName("print_barcode") @Expose private Integer printBarcode; @SerializedName("description") @Expose private String description; @SerializedName("is_all") @Expose private Integer isAll; @SerializedName("partner_id") @Expose private Integer partnerId; @SerializedName("created_at") @Expose private String createdAt; @SerializedName("updated_at") @Expose private String updatedAt; @SerializedName("status") @Expose private Integer status; @SerializedName("is_deleted") @Expose private Integer isDeleted; @SerializedName("category") @Expose private Integer category; @SerializedName("image_url") @Expose private String imageUrl; @SerializedName("is_mapped") @Expose private Integer isMapped; public Integer getIsMapped() { return isMapped; } public void setIsMapped(Integer isMapped) { this.isMapped = isMapped; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Integer getCatId() { return catId; } public void setCatId(Integer catId) { this.catId = catId; } public String getOutletId() { return outletId; } public void setOutletId(String outletId) { this.outletId = outletId; } public Integer getLabelId() { return labelId; } public void setLabelId(Integer labelId) { this.labelId = labelId; } public Integer getUserId() { return userId; } public void setUserId(Integer userId) { this.userId = userId; } public String getProductUniqueId() { return productUniqueId; } public void setProductUniqueId(String productUniqueId) { this.productUniqueId = productUniqueId; } public String getBarcodeUniqueNum() { return barcodeUniqueNum; } public void setBarcodeUniqueNum(String barcodeUniqueNum) { this.barcodeUniqueNum = barcodeUniqueNum; } public Integer getQuantity() { return quantity; } public void setQuantity(Integer quantity) { this.quantity = quantity; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getYouTubeUrl() { return youTubeUrl; } public void setYouTubeUrl(String youTubeUrl) { this.youTubeUrl = youTubeUrl; } public String getSlug() { return slug; } public void setSlug(String slug) { this.slug = slug; } public String getBarcodeImgPath() { return barcodeImgPath; } public void setBarcodeImgPath(String barcodeImgPath) { this.barcodeImgPath = barcodeImgPath; } public String getProductPrice() { return productPrice; } public void setProductPrice(String productPrice) { this.productPrice = productPrice; } public String getIngredient() { return ingredient; } public void setIngredient(String ingredient) { this.ingredient = ingredient; } public String getAllergens() { return allergens; } public void setAllergens(String allergens) { this.allergens = allergens; } public String getEnjoyBy() { return enjoyBy; } public void setEnjoyBy(String enjoyBy) { this.enjoyBy = enjoyBy; } public Integer getPrintLogo() { return printLogo; } public void setPrintLogo(Integer printLogo) { this.printLogo = printLogo; } public Integer getPrintBarcode() { return printBarcode; } public void setPrintBarcode(Integer printBarcode) { this.printBarcode = printBarcode; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public Integer getIsAll() { return isAll; } public void setIsAll(Integer isAll) { this.isAll = isAll; } public Integer getPartnerId() { return partnerId; } public void setPartnerId(Integer partnerId) { this.partnerId = partnerId; } public String getCreatedAt() { return createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getUpdatedAt() { return updatedAt; } public void setUpdatedAt(String updatedAt) { this.updatedAt = updatedAt; } public Integer getStatus() { return status; } public void setStatus(Integer status) { this.status = status; } public Integer getIsDeleted() { return isDeleted; } public void setIsDeleted(Integer isDeleted) { this.isDeleted = isDeleted; } public Integer getCategory() { return category; } public void setCategory(Integer category) { this.category = category; } public String getImageUrl() { return imageUrl; } public void setImageUrl(String imageUrl) { this.imageUrl = imageUrl; } }