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

com.amadeus.shopping.FlightOffers Maven / Gradle / Ivy

There is a newer version: 10.0.0
Show newest version
package com.amadeus.shopping;

import com.amadeus.Amadeus;
import com.amadeus.Params;
import com.amadeus.Response;
import com.amadeus.exceptions.ResponseException;
import com.amadeus.resources.FlightOffer;
import com.amadeus.resources.Resource;
import com.amadeus.shopping.flightOffers.Prediction;
import com.google.gson.Gson;

/**
 * 

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

* Find the cheapest bookable flights. *

* *
   * amadeus.shopping.flightOffers.get(Params
   *   .with("origin", "LHR")
   *   .and("destination", "LAX")
   *   .and("departureDate", "2020-08-01"));
* * @param params the parameters to send to the API * @return an API response object * @throws ResponseException when an exception occurs */ public FlightOffer[] get(Params params) throws ResponseException { Response response = client.get("/v1/shopping/flight-offers", params); return (FlightOffer[]) Resource.fromArray(response, FlightOffer[].class); } /** * Convenience method for calling get without any parameters. * @see FlightOffers#get() */ public FlightOffer[] get() throws ResponseException { return get(null); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy