Subversion Repositories SmartDukaan

Rev

Rev 10482 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package in.shop2020.mobileapi.serving.pojos;

import java.util.List;

public class CartPojo {

    private Long id; // required
    private List<CartLinePojo> lines; // required
    private Double totalPrice; // required
    private Double discountedPrice; // required
    private String couponCode; // required
    private Long pickupStoreId; // required
    private String message; // required
    private Boolean needInsuranceInfo;
    private Boolean locationServiceable;
    private String locationServiceableMessage;
    
    public Long getId() {
        return id;
    }
    public void setId(Long id) {
        this.id = id;
    }
    public List<CartLinePojo> getLines() {
        return lines;
    }
    public void setLines(List<CartLinePojo> lines) {
        this.lines = lines;
    }

    public Double getTotalPrice() {
        return totalPrice;
    }
    public void setTotalPrice(Double totalPrice) {
        this.totalPrice = totalPrice;
    }
    public Double getDiscountedPrice() {
        return discountedPrice;
    }
    public void setDiscountedPrice(Double discountedPrice) {
        this.discountedPrice = discountedPrice;
    }
    public String getCouponCode() {
        return couponCode;
    }
    public void setCouponCode(String couponCode) {
        this.couponCode = couponCode;
    }
    public Long getPickupStoreId() {
        return pickupStoreId;
    }
    public void setPickupStoreId(Long pickupStoreId) {
        this.pickupStoreId = pickupStoreId;
    }
    public String getMessage() {
        return message;
    }
    public void setMessage(String message) {
        this.message = message;
    }
        public void setNeedInsuranceInfo(Boolean needInsuranceInfo) {
                this.needInsuranceInfo = needInsuranceInfo;
        }
        public Boolean getNeedInsuranceInfo() {
                return needInsuranceInfo;
        }
        public void setLocationServiceable(Boolean locationServiceable) {
                this.locationServiceable = locationServiceable;
        }
        public Boolean getLocationServiceable() {
                return locationServiceable;
        }
        public void setLocationServiceableMessage(String locationServiceableMessage) {
                this.locationServiceableMessage = locationServiceableMessage;
        }
        public String getLocationServiceableMessage() {
                return locationServiceableMessage;
        }
    
}