Rev 23806 | Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.web.res;import java.util.List;public class FofoCatalogResponse {Integer catalogId;String feature;@Overridepublic String toString() {return "FofoCatalogResponse [catalogId=" + catalogId + ", feature=" + feature + ", title=" + title+ ", imageUrl=" + imageUrl + ", brand=" + brand + ", hotDeals=" + hotDeals + ", items=" + items + "]";}String title;String imageUrl;String brand;boolean hotDeals;public String getBrand() {return brand;}public void setBrand(String brand) {this.brand = brand;}List<FofoAvailabilityInfo> items;public Integer getCatalogId() {return catalogId;}public void setCatalogId(Integer catalogId) {this.catalogId = catalogId;}public String getTitle() {return title;}public void setTitle(String title) {this.title = title;}public String getImageUrl() {return imageUrl;}public void setImageUrl(String imageUrl) {this.imageUrl = imageUrl;}public List<FofoAvailabilityInfo> getItems() {return items;}public void setItems(List<FofoAvailabilityInfo> items) {this.items = items;}public boolean getHotDeals() {return hotDeals;}public void setHotDeals(boolean hotDeals) {this.hotDeals = hotDeals;}public String getFeature() {return feature;}public void setFeature(String feature) {this.feature = feature;}}