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 shoppingCartCustomerAddressEntity complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="shoppingCartCustomerAddressEntity">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="mode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="address_id" 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="lastname" 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="is_default_billing" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="is_default_shipping" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "shoppingCartCustomerAddressEntity", propOrder = {
"mode",
"addressId",
"firstname",
"lastname",
"company",
"street",
"city",
"region",
"regionId",
"postcode",
"countryId",
"telephone",
"fax",
"isDefaultBilling",
"isDefaultShipping"
})
public class ShoppingCartCustomerAddressEntity {
protected String mode;
@XmlElement(name = "address_id")
protected String addressId;
protected String firstname;
protected String lastname;
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 = "is_default_billing")
protected Integer isDefaultBilling;
@XmlElement(name = "is_default_shipping")
protected Integer isDefaultShipping;
/**
* Gets the value of the mode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMode() {
return mode;
}
/**
* Sets the value of the mode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMode(String value) {
this.mode = value;
}
/**
* 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 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 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 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 isDefaultBilling property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getIsDefaultBilling() {
return isDefaultBilling;
}
/**
* Sets the value of the isDefaultBilling property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setIsDefaultBilling(Integer value) {
this.isDefaultBilling = value;
}
/**
* Gets the value of the isDefaultShipping property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getIsDefaultShipping() {
return isDefaultShipping;
}
/**
* Sets the value of the isDefaultShipping property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setIsDefaultShipping(Integer value) {
this.isDefaultShipping = value;
}
}