com.ean.wsapi.hotel.v3.V3HotelPaymentRequest 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 v3.HotelPaymentRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="v3.HotelPaymentRequest">
* <complexContent>
* <extension base="{http://v3.hotel.wsapi.ean.com/}HotelPaymentRequest">
* <sequence>
* <element name="hotelId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="supplierType" type="{http://v3.hotel.wsapi.ean.com/}SupplierType" minOccurs="0"/>
* <element name="rateType" type="{http://v3.hotel.wsapi.ean.com/}RatePlanType" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "v3.HotelPaymentRequest", propOrder = {
"hotelId",
"supplierType",
"rateType"
})
public class V3HotelPaymentRequest
extends HotelPaymentRequest
{
protected Long hotelId;
protected SupplierType supplierType;
protected RatePlanType rateType;
/**
* Gets the value of the hotelId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getHotelId() {
return hotelId;
}
/**
* Sets the value of the hotelId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setHotelId(Long value) {
this.hotelId = 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 rateType property.
*
* @return
* possible object is
* {@link RatePlanType }
*
*/
public RatePlanType getRateType() {
return rateType;
}
/**
* Sets the value of the rateType property.
*
* @param value
* allowed object is
* {@link RatePlanType }
*
*/
public void setRateType(RatePlanType value) {
this.rateType = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy