Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package utilities;

import com.google.gson.annotations.Expose;

public class VendorPendingProductOfferDisplayDTO {

    @Expose
    private String attributes;
    @Expose
    private String dispatchCategory;
    @Expose
    private String freebies;
    @Expose
    private String imageUrl;
    @Expose
    private String name;
    @Expose
    private String pdpUrl;
    @Expose
    private int pendingQuantity;
    @Expose
    private String productCode;
    @Expose
    private int vendorSKU;

    /**
     * 
     * @return
     *     The attributes
     */
    public String getAttributes() {
        return attributes;
    }

    /**
     * 
     * @param attributes
     *     The attributes
     */
    public void setAttributes(String attributes) {
        this.attributes = attributes;
    }

    /**
     * 
     * @return
     *     The dispatchCategory
     */
    public String getDispatchCategory() {
        return dispatchCategory;
    }

    /**
     * 
     * @param dispatchCategory
     *     The dispatchCategory
     */
    public void setDispatchCategory(String dispatchCategory) {
        this.dispatchCategory = dispatchCategory;
    }

    /**
     * 
     * @return
     *     The freebies
     */
    public String getFreebies() {
        return freebies;
    }

    /**
     * 
     * @param freebies
     *     The freebies
     */
    public void setFreebies(String freebies) {
        this.freebies = freebies;
    }

    /**
     * 
     * @return
     *     The imageUrl
     */
    public String getImageUrl() {
        return imageUrl;
    }

    /**
     * 
     * @param imageUrl
     *     The imageUrl
     */
    public void setImageUrl(String imageUrl) {
        this.imageUrl = imageUrl;
    }

    /**
     * 
     * @return
     *     The name
     */
    public String getName() {
        return name;
    }

    /**
     * 
     * @param name
     *     The name
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * 
     * @return
     *     The pdpUrl
     */
    public String getPdpUrl() {
        return pdpUrl;
    }

    /**
     * 
     * @param pdpUrl
     *     The pdpUrl
     */
    public void setPdpUrl(String pdpUrl) {
        this.pdpUrl = pdpUrl;
    }

    /**
     * 
     * @return
     *     The pendingQuantity
     */
    public int getPendingQuantity() {
        return pendingQuantity;
    }

    /**
     * 
     * @param pendingQuantity
     *     The pendingQuantity
     */
    public void setPendingQuantity(int pendingQuantity) {
        this.pendingQuantity = pendingQuantity;
    }

    /**
     * 
     * @return
     *     The productCode
     */
    public String getProductCode() {
        return productCode;
    }

    /**
     * 
     * @param productCode
     *     The productCode
     */
    public void setProductCode(String productCode) {
        this.productCode = productCode;
    }

    /**
     * 
     * @return
     *     The vendorSKU
     */
    public int getVendorSKU() {
        return vendorSKU;
    }

    /**
     * 
     * @param vendorSKU
     *     The vendorSKU
     */
    public void setVendorSKU(int vendorSKU) {
        this.vendorSKU = vendorSKU;
    }

}