Blame | Last modification | View Log | RSS feed
package com.amazonaws.mws.samples;public class FbaBrandCategorySaleReturnInfo{private String brand;private String category;private long sale;private long nonSellReturn;private double nonSellReturnPtage;public String getBrand() {return brand;}public void setBrand(String brand) {this.brand = brand;}public String getCategory() {return category;}public void setCategory(String category) {this.category = category;}public long getSale() {return sale;}public void setSale(long sale) {this.sale = sale;}public long getNonSellReturn() {return nonSellReturn;}public void setNonSellReturn(long nonSellReturn) {this.nonSellReturn = nonSellReturn;}public double getNonSellReturnPtage() {return nonSellReturnPtage;}public void setNonSellReturnPtage(double nonSellReturnPtage) {this.nonSellReturnPtage = nonSellReturnPtage;}}