All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ean.wsapi.hotel.v3.CustomerAddress Maven / Gradle / Ivy


package com.ean.wsapi.hotel.v3;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for CustomerAddress complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="CustomerAddress">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="address1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="address2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="address3" 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="stateProvinceCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="countryCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="postalCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="isPrimary" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CustomerAddress", propOrder = { "address1", "address2", "address3", "city", "stateProvinceCode", "countryCode", "postalCode", "isPrimary", "type" }) public class CustomerAddress { protected String address1; protected String address2; protected String address3; protected String city; protected String stateProvinceCode; protected String countryCode; protected String postalCode; protected boolean isPrimary; protected int type; /** * Gets the value of the address1 property. * * @return * possible object is * {@link String } * */ public String getAddress1() { return address1; } /** * Sets the value of the address1 property. * * @param value * allowed object is * {@link String } * */ public void setAddress1(String value) { this.address1 = value; } /** * Gets the value of the address2 property. * * @return * possible object is * {@link String } * */ public String getAddress2() { return address2; } /** * Sets the value of the address2 property. * * @param value * allowed object is * {@link String } * */ public void setAddress2(String value) { this.address2 = value; } /** * Gets the value of the address3 property. * * @return * possible object is * {@link String } * */ public String getAddress3() { return address3; } /** * Sets the value of the address3 property. * * @param value * allowed object is * {@link String } * */ public void setAddress3(String value) { this.address3 = 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 stateProvinceCode property. * * @return * possible object is * {@link String } * */ public String getStateProvinceCode() { return stateProvinceCode; } /** * Sets the value of the stateProvinceCode property. * * @param value * allowed object is * {@link String } * */ public void setStateProvinceCode(String value) { this.stateProvinceCode = value; } /** * Gets the value of the countryCode property. * * @return * possible object is * {@link String } * */ public String getCountryCode() { return countryCode; } /** * Sets the value of the countryCode property. * * @param value * allowed object is * {@link String } * */ public void setCountryCode(String value) { this.countryCode = value; } /** * Gets the value of the postalCode property. * * @return * possible object is * {@link String } * */ public String getPostalCode() { return postalCode; } /** * Sets the value of the postalCode property. * * @param value * allowed object is * {@link String } * */ public void setPostalCode(String value) { this.postalCode = value; } /** * Gets the value of the isPrimary property. * */ public boolean isIsPrimary() { return isPrimary; } /** * Sets the value of the isPrimary property. * */ public void setIsPrimary(boolean value) { this.isPrimary = value; } /** * Gets the value of the type property. * */ public int getType() { return type; } /** * Sets the value of the type property. * */ public void setType(int value) { this.type = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy