All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lyra.vads.ws.v5.ShoppingCartRequest Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version

package com.lyra.vads.ws.v5;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for shoppingCartRequest complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="shoppingCartRequest">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="insuranceAmount" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="shippingAmount" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="taxAmount" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="cartItemInfo" type="{http://v5.ws.vads.lyra.com/}cartItemInfo" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "shoppingCartRequest", propOrder = { "insuranceAmount", "shippingAmount", "taxAmount", "cartItemInfo" }) public class ShoppingCartRequest { protected Long insuranceAmount; protected Long shippingAmount; protected Long taxAmount; protected List cartItemInfo; /** * Gets the value of the insuranceAmount property. * * @return * possible object is * {@link Long } * */ public Long getInsuranceAmount() { return insuranceAmount; } /** * Sets the value of the insuranceAmount property. * * @param value * allowed object is * {@link Long } * */ public void setInsuranceAmount(Long value) { this.insuranceAmount = value; } /** * Gets the value of the shippingAmount property. * * @return * possible object is * {@link Long } * */ public Long getShippingAmount() { return shippingAmount; } /** * Sets the value of the shippingAmount property. * * @param value * allowed object is * {@link Long } * */ public void setShippingAmount(Long value) { this.shippingAmount = value; } /** * Gets the value of the taxAmount property. * * @return * possible object is * {@link Long } * */ public Long getTaxAmount() { return taxAmount; } /** * Sets the value of the taxAmount property. * * @param value * allowed object is * {@link Long } * */ public void setTaxAmount(Long value) { this.taxAmount = value; } /** * Gets the value of the cartItemInfo property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the cartItemInfo property. * *

* For example, to add a new item, do as follows: *

     *    getCartItemInfo().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CartItemInfo } * * */ public List getCartItemInfo() { if (cartItemInfo == null) { cartItemInfo = new ArrayList(); } return this.cartItemInfo; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy