it.bz.opendatahub.alpinebits.xml.schema.ota.PkgTravelSegment 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.XmlType;
/**
* A full definition of a travel segment including supplemental price and facilities.
*
* Java class for PkgTravelSegment complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PkgTravelSegment">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="AirSegment" type="{http://www.opentravel.org/OTA/2003/05}PkgAirSegmentType"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PkgTravelSegment", propOrder = {
"airSegment"
})
public class PkgTravelSegment {
@XmlElement(name = "AirSegment", required = true)
protected PkgAirSegmentType airSegment;
/**
* Gets the value of the airSegment property.
*
* @return
* possible object is
* {@link PkgAirSegmentType }
*
*/
public PkgAirSegmentType getAirSegment() {
return airSegment;
}
/**
* Sets the value of the airSegment property.
*
* @param value
* allowed object is
* {@link PkgAirSegmentType }
*
*/
public void setAirSegment(PkgAirSegmentType value) {
this.airSegment = value;
}
}