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

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 { public Prediction prediction; public Upselling upselling; /** * Constructor. * @hide */ public FlightOffers(Amadeus client) { this.prediction = new Prediction(client); this.upselling = new Upselling(client); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy