com.ean.wsapi.hotel.v3.HotelRateRulesRequest 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 HotelRateRulesRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HotelRateRulesRequest">
* <complexContent>
* <extension base="{http://v3.hotel.wsapi.ean.com/}HotelBaseRequest">
* <sequence>
* <element name="hotelId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="arrivalDate" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="departureDate" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="supplierType" type="{http://v3.hotel.wsapi.ean.com/}SupplierType"/>
* <element name="roomTypeCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="rateCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="RoomGroup" type="{http://v3.hotel.wsapi.ean.com/}RoomGroup"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HotelRateRulesRequest", propOrder = {
"hotelId",
"arrivalDate",
"departureDate",
"supplierType",
"roomTypeCode",
"rateCode",
"roomGroup"
})
public class HotelRateRulesRequest
extends HotelBaseRequest
{
protected long hotelId;
@XmlElement(required = true)
protected String arrivalDate;
@XmlElement(required = true)
protected String departureDate;
@XmlElement(required = true)
protected SupplierType supplierType;
@XmlElement(required = true)
protected String roomTypeCode;
@XmlElement(required = true)
protected String rateCode;
@XmlElement(name = "RoomGroup", required = true)
protected RoomGroup roomGroup;
/**
* 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 arrivalDate property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getArrivalDate() {
return arrivalDate;
}
/**
* Sets the value of the arrivalDate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setArrivalDate(String value) {
this.arrivalDate = value;
}
/**
* Gets the value of the departureDate property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDepartureDate() {
return departureDate;
}
/**
* Sets the value of the departureDate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDepartureDate(String value) {
this.departureDate = 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;
}
/**
* 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 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 roomGroup property.
*
* @return
* possible object is
* {@link RoomGroup }
*
*/
public RoomGroup getRoomGroup() {
return roomGroup;
}
/**
* Sets the value of the roomGroup property.
*
* @param value
* allowed object is
* {@link RoomGroup }
*
*/
public void setRoomGroup(RoomGroup value) {
this.roomGroup = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy