Blame | Last modification | View Log | RSS feed
package inventory;import com.google.gson.annotations.SerializedName;public class Inventory {String supc;String sellerSku;String productName;String pageUrl;boolean skipRow;long availableInventory;String lastUpdated;boolean pendingUpdate;long pendingAvailableInventory;boolean live;public String getSupc() {return supc;}public void setSupc(String supc) {this.supc = supc;}public String getSellerSku() {return sellerSku;}public void setSellerSku(String sellerSku) {this.sellerSku = sellerSku;}public String getProductName() {return productName;}public void setProductName(String productName) {this.productName = productName;}public String getPageUrl() {return pageUrl;}public void setPageUrl(String pageUrl) {this.pageUrl = pageUrl;}public boolean isSkipRow() {return skipRow;}public void setSkipRow(boolean skipRow) {this.skipRow = skipRow;}public long getAvailableInventory() {return availableInventory;}public void setAvailableInventory(long availableInventory) {this.availableInventory = availableInventory;}public String getLastUpdated() {return lastUpdated;}public void setLastUpdated(String lastUpdated) {this.lastUpdated = lastUpdated;}public boolean isPendingUpdate() {return pendingUpdate;}public void setPendingUpdate(boolean pendingUpdate) {this.pendingUpdate = pendingUpdate;}public long getPendingAvailableInventory() {return pendingAvailableInventory;}public void setPendingAvailableInventory(long pendingAvailableInventory) {this.pendingAvailableInventory = pendingAvailableInventory;}public boolean isLive() {return live;}public void setLive(boolean live) {this.live = live;}}