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 customerAddressEntityCreate complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="customerAddressEntityCreate"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <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_id" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="region" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="street" type="{urn:Magento}ArrayOfString" 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 = "customerAddressEntityCreate", propOrder = { "city", "company", "countryId", "fax", "firstname", "lastname", "middlename", "postcode", "prefix", "regionId", "region", "street", "suffix", "telephone", "isDefaultBilling", "isDefaultShipping" }) public class CustomerAddressEntityCreate { 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; @XmlElement(name = "region_id") protected Integer regionId; protected String region; protected ArrayOfString 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 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 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 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 street property. * * @return * possible object is * {@link ArrayOfString } * */ public ArrayOfString getStreet() { return street; } /** * Sets the value of the street property. * * @param value * allowed object is * {@link ArrayOfString } * */ public void setStreet(ArrayOfString 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; } }