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

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

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

 * <complexType name="HotelInfo">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="hotelId" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <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="starRating" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *         <element name="thumbnailUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="locationDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HotelInfo", propOrder = { "hotelId", "name", "address", "city", "stateProvinceCode", "countryCode", "postalCode", "starRating", "thumbnailUrl", "locationDescription" }) public class HotelInfo { protected long hotelId; protected String name; protected String address; protected String city; protected String stateProvinceCode; protected String countryCode; protected String postalCode; protected float starRating; protected String thumbnailUrl; protected String locationDescription; /** * 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 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 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 starRating property. * */ public float getStarRating() { return starRating; } /** * Sets the value of the starRating property. * */ public void setStarRating(float value) { this.starRating = value; } /** * Gets the value of the thumbnailUrl property. * * @return * possible object is * {@link String } * */ public String getThumbnailUrl() { return thumbnailUrl; } /** * Sets the value of the thumbnailUrl property. * * @param value * allowed object is * {@link String } * */ public void setThumbnailUrl(String value) { this.thumbnailUrl = value; } /** * Gets the value of the locationDescription property. * * @return * possible object is * {@link String } * */ public String getLocationDescription() { return locationDescription; } /** * Sets the value of the locationDescription property. * * @param value * allowed object is * {@link String } * */ public void setLocationDescription(String value) { this.locationDescription = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy