package com.gekko_holding.webservice.referential; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for bookHotelResponse complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="bookHotelResponse"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="bookResponse" type="{http://webservice.gekko-holding.com/v2_4}bookResponse" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "bookHotelResponse", propOrder = { "bookResponse" }) public class BookHotelResponse { protected BookResponse bookResponse; /** * Gets the value of the bookResponse property. * * @return * possible object is * {@link BookResponse } * */ public BookResponse getBookResponse() { return bookResponse; } /** * Sets the value of the bookResponse property. * * @param value * allowed object is * {@link BookResponse } * */ public void setBookResponse(BookResponse value) { this.bookResponse = value; } }