com.amadeus.shopping.FlightDates Maven / Gradle / Ivy
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.FlightDate;
import com.amadeus.resources.Resource;
/**
*
* A namespaced client for the
* /v1/shopping/flight-dates
endpoints.
*
*
*
* Access via the Amadeus client object.
*
*
*
* Amadeus amadeus = Amadeus.builder("clientId", "secret").build();
* amadeus.shopping.flightDates;
*/
public class FlightDates {
private Amadeus client;
/**
* Constructor.
* @hide
*/
public FlightDates(Amadeus client) {
this.client = client;
}
/**
*
* Find the cheapest flight dates from an
* origin to a destination.
*
*
*
* amadeus.shopping.flightDates.get(Params
* .with("origin", "LHR")
* .and("destination", "PAR"));
*
* @param params the parameters to send to the API
* @return an API response object
* @throws ResponseException when an exception occurs
*/
public FlightDate[] get(Params params) throws ResponseException {
Response response = client.get("/v1/shopping/flight-dates", params);
return (FlightDate[]) Resource.fromArray(response, FlightDate[].class);
}
/**
* Convenience method for calling get
without any parameters.
* @see FlightDates#get()
*/
public FlightDate[] get() throws ResponseException {
return get(null);
}
}