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 salesOrderAddressEntity complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="salesOrderAddressEntity"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="increment_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="parent_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="is_active" 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="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="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="region_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="address_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "salesOrderAddressEntity", propOrder = { "incrementId", "parentId", "createdAt", "updatedAt", "isActive", "addressType", "firstname", "lastname", "company", "street", "city", "region", "postcode", "countryId", "telephone", "fax", "regionId", "addressId" }) public class SalesOrderAddressEntity { @XmlElement(name = "increment_id") protected String incrementId; @XmlElement(name = "parent_id") protected String parentId; @XmlElement(name = "created_at") protected String createdAt; @XmlElement(name = "updated_at") protected String updatedAt; @XmlElement(name = "is_active") protected String isActive; @XmlElement(name = "address_type") protected String addressType; protected String firstname; protected String lastname; protected String company; protected String street; protected String city; protected String region; protected String postcode; @XmlElement(name = "country_id") protected String countryId; protected String telephone; protected String fax; @XmlElement(name = "region_id") protected String regionId; @XmlElement(name = "address_id") protected String addressId; /** * 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 parentId property. * * @return * possible object is * {@link String } * */ public String getParentId() { return parentId; } /** * Sets the value of the parentId property. * * @param value * allowed object is * {@link String } * */ public void setParentId(String value) { this.parentId = 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 isActive property. * * @return * possible object is * {@link String } * */ public String getIsActive() { return isActive; } /** * Sets the value of the isActive property. * * @param value * allowed object is * {@link String } * */ public void setIsActive(String value) { this.isActive = 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 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 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 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 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; } }