com.ean.wsapi.hotel.v3.HotelRoomCancellationRequest 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 HotelRoomCancellationRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HotelRoomCancellationRequest">
* <complexContent>
* <extension base="{http://v3.hotel.wsapi.ean.com/}HotelBaseRequest">
* <sequence>
* <element name="itineraryId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="confirmationNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="reason" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HotelRoomCancellationRequest", propOrder = {
"itineraryId",
"email",
"confirmationNumber",
"reason"
})
public class HotelRoomCancellationRequest
extends HotelBaseRequest
{
protected long itineraryId;
@XmlElement(required = true)
protected String email;
@XmlElement(required = true)
protected String confirmationNumber;
protected String reason;
/**
* Gets the value of the itineraryId property.
*
*/
public long getItineraryId() {
return itineraryId;
}
/**
* Sets the value of the itineraryId property.
*
*/
public void setItineraryId(long value) {
this.itineraryId = value;
}
/**
* Gets the value of the email property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmail() {
return email;
}
/**
* Sets the value of the email property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmail(String value) {
this.email = value;
}
/**
* Gets the value of the confirmationNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getConfirmationNumber() {
return confirmationNumber;
}
/**
* Sets the value of the confirmationNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setConfirmationNumber(String value) {
this.confirmationNumber = value;
}
/**
* Gets the value of the reason property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getReason() {
return reason;
}
/**
* Sets the value of the reason property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setReason(String value) {
this.reason = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy