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

com.ean.wsapi.hotel.v3.LocationInfoRequest 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 LocationInfoRequest complex type. * *

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

 * <complexType name="LocationInfoRequest">
 *   <complexContent>
 *     <extension base="{http://v3.hotel.wsapi.ean.com/}HotelBaseRequest">
 *       <sequence>
 *         <element name="address" 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="destinationString" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="destinationId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="ignoreSearchWeight" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="useGeocoder" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="type" type="{http://v3.hotel.wsapi.ean.com/}LocationInfoType" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LocationInfoRequest", propOrder = { "address", "city", "stateProvinceCode", "countryCode", "postalCode", "destinationString", "destinationId", "ignoreSearchWeight", "useGeocoder", "type" }) public class LocationInfoRequest extends HotelBaseRequest { protected String address; protected String city; protected String stateProvinceCode; protected String countryCode; protected String postalCode; protected String destinationString; protected String destinationId; protected Boolean ignoreSearchWeight; protected Boolean useGeocoder; protected String type; /** * Gets the value of the address property. * * @return * possible object is * {@link String } * */ public String getAddress() { return address; } /** * Sets the value of the address property. * * @param value * allowed object is * {@link String } * */ public void setAddress(String value) { this.address = 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 destinationString property. * * @return * possible object is * {@link String } * */ public String getDestinationString() { return destinationString; } /** * Sets the value of the destinationString property. * * @param value * allowed object is * {@link String } * */ public void setDestinationString(String value) { this.destinationString = value; } /** * Gets the value of the destinationId property. * * @return * possible object is * {@link String } * */ public String getDestinationId() { return destinationId; } /** * Sets the value of the destinationId property. * * @param value * allowed object is * {@link String } * */ public void setDestinationId(String value) { this.destinationId = value; } /** * Gets the value of the ignoreSearchWeight property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIgnoreSearchWeight() { return ignoreSearchWeight; } /** * Sets the value of the ignoreSearchWeight property. * * @param value * allowed object is * {@link Boolean } * */ public void setIgnoreSearchWeight(Boolean value) { this.ignoreSearchWeight = value; } /** * Gets the value of the useGeocoder property. * * @return * possible object is * {@link Boolean } * */ public Boolean isUseGeocoder() { return useGeocoder; } /** * Sets the value of the useGeocoder property. * * @param value * allowed object is * {@link Boolean } * */ public void setUseGeocoder(Boolean value) { this.useGeocoder = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy