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