All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy