com.amadeus.travel.analytics.AirTraffic Maven / Gradle / Ivy
package com.amadeus.travel.analytics;
import com.amadeus.Amadeus;
import com.amadeus.travel.analytics.airTraffic.Booked;
import com.amadeus.travel.analytics.airTraffic.BusiestPeriod;
import com.amadeus.travel.analytics.airTraffic.Traveled;
/**
*
* A namespaced client for the
* /v1/travel/analytics/air-traffic
endpoints.
*
*
*
* Access via the Amadeus client object.
*
*
*
* Amadeus amadeus = Amadeus.builder("clientId", "secret").build();
* amadeus.travel.analytics.airTraffic;
*
* @hide
*/
public class AirTraffic {
/**
*
* A namespaced client for the
* /v1/travel/analytics/air-traffic/traveled
endpoints.
*
*/
public Traveled traveled;
/**
*
* A namespaced client for the
* /v1/travel/analytics/air-traffic/booked
endpoints.
*
*/
public Booked booked;
/**
*
* A namespaced client for the
* /v1/travel/analytics/air-traffic/busiest-period
endpoints.
*
*/
public BusiestPeriod busiestPeriod;
/**
* Constructor.
* @hide
*/
public AirTraffic(Amadeus client) {
this.traveled = new Traveled(client);
this.booked = new Booked(client);
this.busiestPeriod = new BusiestPeriod(client);
}
}