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 shoppingCartAddressEntity complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="shoppingCartAddressEntity">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="address_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="created_at" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="updated_at" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="customer_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="save_in_address_book" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="customer_address_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="address_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="firstname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="middlename" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="lastname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="suffix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="company" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="region" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="region_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="country_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="same_as_billing" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="free_shipping" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="shipping_method" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="shipping_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="weight" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "shoppingCartAddressEntity", propOrder = {
"addressId",
"createdAt",
"updatedAt",
"customerId",
"saveInAddressBook",
"customerAddressId",
"addressType",
"email",
"prefix",
"firstname",
"middlename",
"lastname",
"suffix",
"company",
"street",
"city",
"region",
"regionId",
"postcode",
"countryId",
"telephone",
"fax",
"sameAsBilling",
"freeShipping",
"shippingMethod",
"shippingDescription",
"weight"
})
public class ShoppingCartAddressEntity {
@XmlElement(name = "address_id")
protected String addressId;
@XmlElement(name = "created_at")
protected String createdAt;
@XmlElement(name = "updated_at")
protected String updatedAt;
@XmlElement(name = "customer_id")
protected String customerId;
@XmlElement(name = "save_in_address_book")
protected Integer saveInAddressBook;
@XmlElement(name = "customer_address_id")
protected String customerAddressId;
@XmlElement(name = "address_type")
protected String addressType;
protected String email;
protected String prefix;
protected String firstname;
protected String middlename;
protected String lastname;
protected String suffix;
protected String company;
protected String street;
protected String city;
protected String region;
@XmlElement(name = "region_id")
protected String regionId;
protected String postcode;
@XmlElement(name = "country_id")
protected String countryId;
protected String telephone;
protected String fax;
@XmlElement(name = "same_as_billing")
protected Integer sameAsBilling;
@XmlElement(name = "free_shipping")
protected Integer freeShipping;
@XmlElement(name = "shipping_method")
protected String shippingMethod;
@XmlElement(name = "shipping_description")
protected String shippingDescription;
protected Double weight;
/**
* Gets the value of the addressId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddressId() {
return addressId;
}
/**
* Sets the value of the addressId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAddressId(String value) {
this.addressId = value;
}
/**
* Gets the value of the createdAt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCreatedAt() {
return createdAt;
}
/**
* Sets the value of the createdAt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCreatedAt(String value) {
this.createdAt = value;
}
/**
* Gets the value of the updatedAt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUpdatedAt() {
return updatedAt;
}
/**
* Sets the value of the updatedAt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUpdatedAt(String value) {
this.updatedAt = value;
}
/**
* Gets the value of the customerId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCustomerId() {
return customerId;
}
/**
* Sets the value of the customerId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCustomerId(String value) {
this.customerId = value;
}
/**
* Gets the value of the saveInAddressBook property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getSaveInAddressBook() {
return saveInAddressBook;
}
/**
* Sets the value of the saveInAddressBook property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setSaveInAddressBook(Integer value) {
this.saveInAddressBook = value;
}
/**
* Gets the value of the customerAddressId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCustomerAddressId() {
return customerAddressId;
}
/**
* Sets the value of the customerAddressId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCustomerAddressId(String value) {
this.customerAddressId = value;
}
/**
* Gets the value of the addressType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddressType() {
return addressType;
}
/**
* Sets the value of the addressType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAddressType(String value) {
this.addressType = value;
}
/**
* Gets the value of the email property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmail() {
return email;
}
/**
* Sets the value of the email property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmail(String value) {
this.email = value;
}
/**
* Gets the value of the prefix property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPrefix() {
return prefix;
}
/**
* Sets the value of the prefix property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPrefix(String value) {
this.prefix = value;
}
/**
* Gets the value of the firstname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFirstname() {
return firstname;
}
/**
* Sets the value of the firstname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFirstname(String value) {
this.firstname = value;
}
/**
* Gets the value of the middlename property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMiddlename() {
return middlename;
}
/**
* Sets the value of the middlename property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMiddlename(String value) {
this.middlename = value;
}
/**
* Gets the value of the lastname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLastname() {
return lastname;
}
/**
* Sets the value of the lastname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLastname(String value) {
this.lastname = value;
}
/**
* Gets the value of the suffix property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSuffix() {
return suffix;
}
/**
* Sets the value of the suffix property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSuffix(String value) {
this.suffix = value;
}
/**
* Gets the value of the company property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCompany() {
return company;
}
/**
* Sets the value of the company property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCompany(String value) {
this.company = value;
}
/**
* Gets the value of the street property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStreet() {
return street;
}
/**
* Sets the value of the street property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStreet(String value) {
this.street = value;
}
/**
* Gets the value of the city property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCity() {
return city;
}
/**
* Sets the value of the city property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCity(String value) {
this.city = value;
}
/**
* Gets the value of the region property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRegion() {
return region;
}
/**
* Sets the value of the region property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRegion(String value) {
this.region = value;
}
/**
* Gets the value of the regionId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRegionId() {
return regionId;
}
/**
* Sets the value of the regionId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRegionId(String value) {
this.regionId = value;
}
/**
* Gets the value of the postcode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPostcode() {
return postcode;
}
/**
* Sets the value of the postcode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPostcode(String value) {
this.postcode = value;
}
/**
* Gets the value of the countryId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCountryId() {
return countryId;
}
/**
* Sets the value of the countryId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCountryId(String value) {
this.countryId = value;
}
/**
* Gets the value of the telephone property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTelephone() {
return telephone;
}
/**
* Sets the value of the telephone property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTelephone(String value) {
this.telephone = value;
}
/**
* Gets the value of the fax property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFax() {
return fax;
}
/**
* Sets the value of the fax property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFax(String value) {
this.fax = value;
}
/**
* Gets the value of the sameAsBilling property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getSameAsBilling() {
return sameAsBilling;
}
/**
* Sets the value of the sameAsBilling property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setSameAsBilling(Integer value) {
this.sameAsBilling = value;
}
/**
* Gets the value of the freeShipping property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getFreeShipping() {
return freeShipping;
}
/**
* Sets the value of the freeShipping property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setFreeShipping(Integer value) {
this.freeShipping = value;
}
/**
* Gets the value of the shippingMethod property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShippingMethod() {
return shippingMethod;
}
/**
* Sets the value of the shippingMethod property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setShippingMethod(String value) {
this.shippingMethod = value;
}
/**
* Gets the value of the shippingDescription property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShippingDescription() {
return shippingDescription;
}
/**
* Sets the value of the shippingDescription property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setShippingDescription(String value) {
this.shippingDescription = value;
}
/**
* Gets the value of the weight property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getWeight() {
return weight;
}
/**
* Sets the value of the weight property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setWeight(Double value) {
this.weight = value;
}
}