package com.sitewhere.assetmodule.magento.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for shoppingCartShippingMethodEntity complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="shoppingCartShippingMethodEntity">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="carrier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="carrier_title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="method" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="method_title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="method_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="price" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "shoppingCartShippingMethodEntity", propOrder = {
"code",
"carrier",
"carrierTitle",
"method",
"methodTitle",
"methodDescription",
"price"
})
public class ShoppingCartShippingMethodEntity {
protected String code;
protected String carrier;
@XmlElement(name = "carrier_title")
protected String carrierTitle;
protected String method;
@XmlElement(name = "method_title")
protected String methodTitle;
@XmlElement(name = "method_description")
protected String methodDescription;
protected Double price;
/**
* Gets the value of the code property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCode() {
return code;
}
/**
* Sets the value of the code property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCode(String value) {
this.code = value;
}
/**
* Gets the value of the carrier property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCarrier() {
return carrier;
}
/**
* Sets the value of the carrier property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCarrier(String value) {
this.carrier = value;
}
/**
* Gets the value of the carrierTitle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCarrierTitle() {
return carrierTitle;
}
/**
* Sets the value of the carrierTitle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCarrierTitle(String value) {
this.carrierTitle = value;
}
/**
* Gets the value of the method property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMethod() {
return method;
}
/**
* Sets the value of the method property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMethod(String value) {
this.method = value;
}
/**
* Gets the value of the methodTitle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMethodTitle() {
return methodTitle;
}
/**
* Sets the value of the methodTitle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMethodTitle(String value) {
this.methodTitle = value;
}
/**
* Gets the value of the methodDescription property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMethodDescription() {
return methodDescription;
}
/**
* Sets the value of the methodDescription property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMethodDescription(String value) {
this.methodDescription = value;
}
/**
* Gets the value of the price property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getPrice() {
return price;
}
/**
* Sets the value of the price property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setPrice(Double value) {
this.price = value;
}
}