com.amadeus.shopping.FlightOffers Maven / Gradle / Ivy
package com.amadeus.shopping;
import com.amadeus.Amadeus;
import com.amadeus.shopping.flightOffers.Prediction;
import com.amadeus.shopping.flightOffers.Upselling;
/**
*
* A namespaced client for the
* /v1/shopping/flight-offers
endpoints.
*
*
*
* Access via the Amadeus client object.
*
*
*
* Amadeus amadeus = Amadeus.builder("clientId", "secret").build();
* amadeus.shopping.flightOffers;
*/
public class FlightOffers {
private Amadeus client;
public Prediction prediction;
public Upselling upselling;
/**
* Constructor.
* @hide
*/
public FlightOffers(Amadeus client) {
this.client = client;
this.prediction = new Prediction(client);
this.upselling = new Upselling(client);
}
}