com.amadeus.airport.Predictions Maven / Gradle / Ivy
package com.amadeus.airport.predictions;
import com.amadeus.Amadeus;
/**
*
* A namespaced client for the
* /v1/airport/predictions
endpoints.
*
*
*
* Access via the Amadeus client object.
*
*
*
* Amadeus amadeus = Amadeus.builder("clientId", "secret").build();
* amadeus.airport.predictions;
*
* @hide
*/
public class Predictions {
/**
*
* A namespaced client for the
* /v1/airport/predictions/on-time
endpoints.
*
*/
public AirportOnTime onTime;
/**
* Constructor.
* @hide
*/
public Predictions(Amadeus client) {
this.onTime = new AirportOnTime(client);
}
}