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

com.ean.wsapi.hotel.v3.LowestRateInfo 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.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for LowestRateInfo complex type. * *

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

 * <complexType name="LowestRateInfo">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="NightlyRates" type="{http://v3.hotel.wsapi.ean.com/}NightlyRates" minOccurs="0"/>
 *         <element name="rateCurrencyCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="roomDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="promotion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="rateCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="roomTypeCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="supplierType" type="{http://v3.hotel.wsapi.ean.com/}SupplierType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LowestRateInfo", propOrder = { "nightlyRates", "rateCurrencyCode", "roomDescription", "promotion", "rateCode", "roomTypeCode", "supplierType" }) public class LowestRateInfo { @XmlElement(name = "NightlyRates") protected NightlyRates nightlyRates; protected String rateCurrencyCode; protected String roomDescription; protected String promotion; protected String rateCode; protected String roomTypeCode; protected SupplierType supplierType; /** * Gets the value of the nightlyRates property. * * @return * possible object is * {@link NightlyRates } * */ public NightlyRates getNightlyRates() { return nightlyRates; } /** * Sets the value of the nightlyRates property. * * @param value * allowed object is * {@link NightlyRates } * */ public void setNightlyRates(NightlyRates value) { this.nightlyRates = value; } /** * Gets the value of the rateCurrencyCode property. * * @return * possible object is * {@link String } * */ public String getRateCurrencyCode() { return rateCurrencyCode; } /** * Sets the value of the rateCurrencyCode property. * * @param value * allowed object is * {@link String } * */ public void setRateCurrencyCode(String value) { this.rateCurrencyCode = value; } /** * Gets the value of the roomDescription property. * * @return * possible object is * {@link String } * */ public String getRoomDescription() { return roomDescription; } /** * Sets the value of the roomDescription property. * * @param value * allowed object is * {@link String } * */ public void setRoomDescription(String value) { this.roomDescription = value; } /** * Gets the value of the promotion property. * * @return * possible object is * {@link String } * */ public String getPromotion() { return promotion; } /** * Sets the value of the promotion property. * * @param value * allowed object is * {@link String } * */ public void setPromotion(String value) { this.promotion = value; } /** * Gets the value of the rateCode property. * * @return * possible object is * {@link String } * */ public String getRateCode() { return rateCode; } /** * Sets the value of the rateCode property. * * @param value * allowed object is * {@link String } * */ public void setRateCode(String value) { this.rateCode = value; } /** * Gets the value of the roomTypeCode property. * * @return * possible object is * {@link String } * */ public String getRoomTypeCode() { return roomTypeCode; } /** * Sets the value of the roomTypeCode property. * * @param value * allowed object is * {@link String } * */ public void setRoomTypeCode(String value) { this.roomTypeCode = value; } /** * Gets the value of the supplierType property. * * @return * possible object is * {@link SupplierType } * */ public SupplierType getSupplierType() { return supplierType; } /** * Sets the value of the supplierType property. * * @param value * allowed object is * {@link SupplierType } * */ public void setSupplierType(SupplierType value) { this.supplierType = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy