Rev 28653 | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.model;import java.util.List;public class CartResponse{private List<CartItemResponseModel> cartItems;private int maxEstimate;private long nonAccessoryQuantity;private int cartMessageChanged;private long totalQty;private int cartMessageUndeliverable;private double shippingCharge;private List<CartMessage> cartMessages;private String pincode;private int cartMessageOOS;private String estimateString;private boolean cod;private double totalAmount;private boolean hasAccessories;private int cartMessagesMerged;public List<CartItemResponseModel> getCartItems() {return cartItems;}public void setCartItems(List<CartItemResponseModel> cartItems) {this.cartItems = cartItems;}public int getMaxEstimate() {return maxEstimate;}public void setMaxEstimate(int maxEstimate) {this.maxEstimate = maxEstimate;}public long getNonAccessoryQuantity() {return nonAccessoryQuantity;}public void setNonAccessoryQuantity(long nonAccessoryQuantity) {this.nonAccessoryQuantity = nonAccessoryQuantity;}public int getCartMessageChanged() {return cartMessageChanged;}public void setCartMessageChanged(int cartMessageChanged) {this.cartMessageChanged = cartMessageChanged;}public long getTotalQty() {return totalQty;}public void setTotalQty(long totalQty) {this.totalQty = totalQty;}public int getCartMessageUndeliverable() {return cartMessageUndeliverable;}public void setCartMessageUndeliverable(int cartMessageUndeliverable) {this.cartMessageUndeliverable = cartMessageUndeliverable;}public double getShippingCharge() {return shippingCharge;}public void setShippingCharge(double shippingCharge) {this.shippingCharge = shippingCharge;}public List<CartMessage> getCartMessages() {return cartMessages;}public void setCartMessages(List<CartMessage> cartMessages) {this.cartMessages = cartMessages;}public String getPincode() {return pincode;}public void setPincode(String pincode) {this.pincode = pincode;}public int getCartMessageOOS() {return cartMessageOOS;}public void setCartMessageOOS(int cartMessageOOS) {this.cartMessageOOS = cartMessageOOS;}public String getEstimateString() {return estimateString;}public void setEstimateString(String estimateString) {this.estimateString = estimateString;}public boolean isCod() {return cod;}public void setCod(boolean cod) {this.cod = cod;}public double getTotalAmount() {return totalAmount;}public void setTotalAmount(double totalAmount) {this.totalAmount = totalAmount;}public boolean isHasAccessories() {return hasAccessories;}public void setHasAccessories(boolean hasAccessories) {this.hasAccessories = hasAccessories;}public int getCartMessagesMerged() {return cartMessagesMerged;}public void setCartMessagesMerged(int cartMessagesMerged) {this.cartMessagesMerged = cartMessagesMerged;}@Overridepublic String toString() {return "CartResponse{" +"cartItems=" + cartItems +", maxEstimate=" + maxEstimate +", nonAccessoryQuantity=" + nonAccessoryQuantity +", cartMessageChanged=" + cartMessageChanged +", totalQty=" + totalQty +", cartMessageUndeliverable=" + cartMessageUndeliverable +", shippingCharge=" + shippingCharge +", cartMessages=" + cartMessages +", pincode='" + pincode + '\'' +", cartMessageOOS=" + cartMessageOOS +", estimateString='" + estimateString + '\'' +", cod=" + cod +", totalAmount=" + totalAmount +", hasAccessories=" + hasAccessories +", cartMessagesMerged=" + cartMessagesMerged +'}';}}