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 customerAddressEntityItem complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="customerAddressEntityItem">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="customer_address_id" type="{http://www.w3.org/2001/XMLSchema}int" 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="increment_id" 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="company" 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="fax" 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="middlename" 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="prefix" 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}int" minOccurs="0"/>
* <element name="street" 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="telephone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="is_default_billing" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="is_default_shipping" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "customerAddressEntityItem", propOrder = {
"customerAddressId",
"createdAt",
"updatedAt",
"incrementId",
"city",
"company",
"countryId",
"fax",
"firstname",
"lastname",
"middlename",
"postcode",
"prefix",
"region",
"regionId",
"street",
"suffix",
"telephone",
"isDefaultBilling",
"isDefaultShipping"
})
public class CustomerAddressEntityItem {
@XmlElement(name = "customer_address_id")
protected Integer customerAddressId;
@XmlElement(name = "created_at")
protected String createdAt;
@XmlElement(name = "updated_at")
protected String updatedAt;
@XmlElement(name = "increment_id")
protected String incrementId;
protected String city;
protected String company;
@XmlElement(name = "country_id")
protected String countryId;
protected String fax;
protected String firstname;
protected String lastname;
protected String middlename;
protected String postcode;
protected String prefix;
protected String region;
@XmlElement(name = "region_id")
protected Integer regionId;
protected String street;
protected String suffix;
protected String telephone;
@XmlElement(name = "is_default_billing")
protected Boolean isDefaultBilling;
@XmlElement(name = "is_default_shipping")
protected Boolean isDefaultShipping;
/**
* Gets the value of the customerAddressId property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getCustomerAddressId() {
return customerAddressId;
}
/**
* Sets the value of the customerAddressId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setCustomerAddressId(Integer value) {
this.customerAddressId = 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 incrementId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIncrementId() {
return incrementId;
}
/**
* Sets the value of the incrementId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIncrementId(String value) {
this.incrementId = 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 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 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 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 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 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 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 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 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 Integer }
*
*/
public Integer getRegionId() {
return regionId;
}
/**
* Sets the value of the regionId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setRegionId(Integer value) {
this.regionId = 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 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 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 isDefaultBilling property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsDefaultBilling() {
return isDefaultBilling;
}
/**
* Sets the value of the isDefaultBilling property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsDefaultBilling(Boolean value) {
this.isDefaultBilling = value;
}
/**
* Gets the value of the isDefaultShipping property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsDefaultShipping() {
return isDefaultShipping;
}
/**
* Sets the value of the isDefaultShipping property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsDefaultShipping(Boolean value) {
this.isDefaultShipping = value;
}
}