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

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

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

 * <complexType name="Hotel">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="hotelId" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="statusCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <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="phone" 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="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *         <element name="coordinateAccuracyCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="lowRate" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *         <element name="highRate" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *         <element name="confidence" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="hotelRating" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
 *         <element name="tripAdvisorRating" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
 *         <element name="market" 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="superRegion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="theme" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Hotel", propOrder = { "hotelId", "statusCode", "name", "address1", "address2", "address3", "city", "stateProvinceCode", "countryCode", "postalCode", "phone", "fax", "latitude", "longitude", "coordinateAccuracyCode", "lowRate", "highRate", "confidence", "hotelRating", "tripAdvisorRating", "market", "region", "superRegion", "theme" }) public class Hotel { protected long hotelId; protected String statusCode; protected String name; protected String address1; protected String address2; protected String address3; protected String city; protected String stateProvinceCode; protected String countryCode; protected String postalCode; protected String phone; protected String fax; protected float latitude; protected float longitude; protected String coordinateAccuracyCode; protected float lowRate; protected float highRate; protected long confidence; protected Float hotelRating; protected Float tripAdvisorRating; protected String market; protected String region; protected String superRegion; protected String theme; /** * Gets the value of the hotelId property. * */ public long getHotelId() { return hotelId; } /** * Sets the value of the hotelId property. * */ public void setHotelId(long value) { this.hotelId = value; } /** * Gets the value of the statusCode property. * * @return * possible object is * {@link String } * */ public String getStatusCode() { return statusCode; } /** * Sets the value of the statusCode property. * * @param value * allowed object is * {@link String } * */ public void setStatusCode(String value) { this.statusCode = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * 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 phone property. * * @return * possible object is * {@link String } * */ public String getPhone() { return phone; } /** * Sets the value of the phone property. * * @param value * allowed object is * {@link String } * */ public void setPhone(String value) { this.phone = 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 latitude property. * */ public float getLatitude() { return latitude; } /** * Sets the value of the latitude property. * */ public void setLatitude(float value) { this.latitude = value; } /** * Gets the value of the longitude property. * */ public float getLongitude() { return longitude; } /** * Sets the value of the longitude property. * */ public void setLongitude(float value) { this.longitude = value; } /** * Gets the value of the coordinateAccuracyCode property. * * @return * possible object is * {@link String } * */ public String getCoordinateAccuracyCode() { return coordinateAccuracyCode; } /** * Sets the value of the coordinateAccuracyCode property. * * @param value * allowed object is * {@link String } * */ public void setCoordinateAccuracyCode(String value) { this.coordinateAccuracyCode = value; } /** * Gets the value of the lowRate property. * */ public float getLowRate() { return lowRate; } /** * Sets the value of the lowRate property. * */ public void setLowRate(float value) { this.lowRate = value; } /** * Gets the value of the highRate property. * */ public float getHighRate() { return highRate; } /** * Sets the value of the highRate property. * */ public void setHighRate(float value) { this.highRate = value; } /** * Gets the value of the confidence property. * */ public long getConfidence() { return confidence; } /** * Sets the value of the confidence property. * */ public void setConfidence(long value) { this.confidence = value; } /** * Gets the value of the hotelRating property. * * @return * possible object is * {@link Float } * */ public Float getHotelRating() { return hotelRating; } /** * Sets the value of the hotelRating property. * * @param value * allowed object is * {@link Float } * */ public void setHotelRating(Float value) { this.hotelRating = value; } /** * Gets the value of the tripAdvisorRating property. * * @return * possible object is * {@link Float } * */ public Float getTripAdvisorRating() { return tripAdvisorRating; } /** * Sets the value of the tripAdvisorRating property. * * @param value * allowed object is * {@link Float } * */ public void setTripAdvisorRating(Float value) { this.tripAdvisorRating = value; } /** * Gets the value of the market property. * * @return * possible object is * {@link String } * */ public String getMarket() { return market; } /** * Sets the value of the market property. * * @param value * allowed object is * {@link String } * */ public void setMarket(String value) { this.market = 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 superRegion property. * * @return * possible object is * {@link String } * */ public String getSuperRegion() { return superRegion; } /** * Sets the value of the superRegion property. * * @param value * allowed object is * {@link String } * */ public void setSuperRegion(String value) { this.superRegion = value; } /** * Gets the value of the theme property. * * @return * possible object is * {@link String } * */ public String getTheme() { return theme; } /** * Sets the value of the theme property. * * @param value * allowed object is * {@link String } * */ public void setTheme(String value) { this.theme = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy