it.bz.opendatahub.alpinebits.xml.schema.ota.OTAHotelInvCountNotifRS Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020.10.22 at 07:23:30 PM GMT
//
package it.bz.opendatahub.alpinebits.xml.schema.ota;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <extension base="{http://www.opentravel.org/OTA/2003/05}MessageAcknowledgementType">
* <sequence>
* <element name="Inventories" type="{http://www.opentravel.org/OTA/2003/05}InvCountType" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"inventories"
})
@XmlRootElement(name = "OTA_HotelInvCountNotifRS")
public class OTAHotelInvCountNotifRS
extends MessageAcknowledgementType
{
@XmlElement(name = "Inventories")
protected InvCountType inventories;
/**
* Gets the value of the inventories property.
*
* @return
* possible object is
* {@link InvCountType }
*
*/
public InvCountType getInventories() {
return inventories;
}
/**
* Sets the value of the inventories property.
*
* @param value
* allowed object is
* {@link InvCountType }
*
*/
public void setInventories(InvCountType value) {
this.inventories = value;
}
}