com.ean.wsapi.hotel.v3.GetItinerary 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 getItinerary complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="getItinerary">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="HotelItineraryRequest" type="{http://v3.hotel.wsapi.ean.com/}HotelItineraryRequest" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "getItinerary", propOrder = {
"hotelItineraryRequest"
})
public class GetItinerary {
@XmlElement(name = "HotelItineraryRequest")
protected HotelItineraryRequest hotelItineraryRequest;
/**
* Gets the value of the hotelItineraryRequest property.
*
* @return
* possible object is
* {@link HotelItineraryRequest }
*
*/
public HotelItineraryRequest getHotelItineraryRequest() {
return hotelItineraryRequest;
}
/**
* Sets the value of the hotelItineraryRequest property.
*
* @param value
* allowed object is
* {@link HotelItineraryRequest }
*
*/
public void setHotelItineraryRequest(HotelItineraryRequest value) {
this.hotelItineraryRequest = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy