com.amadeus.Airline Maven / Gradle / Ivy
package com.amadeus;
import com.amadeus.airline.Destinations;
/**
*
* A namespaced client for the
* /v1/airline
endpoints.
*
*
*
* Access via the Amadeus client object.
*
*
*
* Amadeus amadeus = Amadeus.builder("clientId", "secret").build();
* amadeus.airline
*
* @hide
*/
public class Airline {
/**
* Constructor.
* @hide
*/
public Airline(Amadeus client) {
this.destinations = new Destinations(client);
}
/**
*
* A namespaced client for the
* /v1/airline/destinations
endpoints.
*
*/
public Destinations destinations;
}