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

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

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

 * <complexType name="LocationInfo">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="destinationId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <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="postalCode" 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="countryName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="geoAccuracy" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="locationInDestination" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *         <element name="refLocationMileage" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *         <element name="referenceLocationCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="activePropertyCount" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LocationInfo", propOrder = { "destinationId", "active", "type", "address", "city", "stateProvinceCode", "postalCode", "countryCode", "countryName", "code", "description", "geoAccuracy", "locationInDestination", "latitude", "longitude", "refLocationMileage", "referenceLocationCode", "activePropertyCount" }) public class LocationInfo { protected String destinationId; protected boolean active; protected int type; protected String address; protected String city; protected String stateProvinceCode; protected String postalCode; protected String countryCode; protected String countryName; protected String code; protected String description; protected int geoAccuracy; protected boolean locationInDestination; protected float latitude; protected float longitude; protected float refLocationMileage; protected String referenceLocationCode; protected int activePropertyCount; /** * 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 active property. * */ public boolean isActive() { return active; } /** * Sets the value of the active property. * */ public void setActive(boolean value) { this.active = 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; } /** * 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 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 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 countryName property. * * @return * possible object is * {@link String } * */ public String getCountryName() { return countryName; } /** * Sets the value of the countryName property. * * @param value * allowed object is * {@link String } * */ public void setCountryName(String value) { this.countryName = value; } /** * Gets the value of the code property. * * @return * possible object is * {@link String } * */ public String getCode() { return code; } /** * Sets the value of the code property. * * @param value * allowed object is * {@link String } * */ public void setCode(String value) { this.code = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the geoAccuracy property. * */ public int getGeoAccuracy() { return geoAccuracy; } /** * Sets the value of the geoAccuracy property. * */ public void setGeoAccuracy(int value) { this.geoAccuracy = value; } /** * Gets the value of the locationInDestination property. * */ public boolean isLocationInDestination() { return locationInDestination; } /** * Sets the value of the locationInDestination property. * */ public void setLocationInDestination(boolean value) { this.locationInDestination = 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 refLocationMileage property. * */ public float getRefLocationMileage() { return refLocationMileage; } /** * Sets the value of the refLocationMileage property. * */ public void setRefLocationMileage(float value) { this.refLocationMileage = value; } /** * Gets the value of the referenceLocationCode property. * * @return * possible object is * {@link String } * */ public String getReferenceLocationCode() { return referenceLocationCode; } /** * Sets the value of the referenceLocationCode property. * * @param value * allowed object is * {@link String } * */ public void setReferenceLocationCode(String value) { this.referenceLocationCode = value; } /** * Gets the value of the activePropertyCount property. * */ public int getActivePropertyCount() { return activePropertyCount; } /** * Sets the value of the activePropertyCount property. * */ public void setActivePropertyCount(int value) { this.activePropertyCount = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy