All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ean.wsapi.hotel.v3.HotelBaseRequest 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for HotelBaseRequest complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="HotelBaseRequest">
 *   <complexContent>
 *     <extension base="{http://v3.hotel.wsapi.ean.com/}BaseRequest">
 *       <sequence>
 *         <element name="minorRev" type="{http://v3.hotel.wsapi.ean.com/}HotelMinorRevType" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HotelBaseRequest", propOrder = { "minorRev" }) @XmlSeeAlso({ HotelInformationRequest.class, HotelRateRulesRequest.class, HotelListRequest.class, HotelRoomReservationRequest.class, HotelRoomImageRequest.class, HotelRoomAvailabilityRequest.class, HotelItineraryRequest.class, AlternatePropertyListRequest.class, HotelRoomCancellationRequest.class, PingRequest.class, LocationInfoRequest.class, HotelPaymentRequest.class }) public abstract class HotelBaseRequest extends BaseRequest { protected Integer minorRev; /** * Gets the value of the minorRev property. * * @return * possible object is * {@link Integer } * */ public Integer getMinorRev() { return minorRev; } /** * Sets the value of the minorRev property. * * @param value * allowed object is * {@link Integer } * */ public void setMinorRev(Integer value) { this.minorRev = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy