amadeus4dev/amadeus-node

View on GitHub
src/amadeus/namespaces/shopping/flight_offers.js

Summary

Maintainability
A
1 hr
Test Coverage
import FlightChoicePrediction from './flight_offers/flight_choice_prediction.js';
import Pricing from './flight_offers/pricing.js';
import Upselling from './flight_offers/upselling.js';

/**
 * A namespaced client for the
 * `/v1/shopping/flight-offers` endpoints
 *
 * Access via the {@link Amadeus} object
 *
 * ```js
 * let amadeus = new Amadeus();
 * amadeus.shopping.flightOffers;
 * ```
 *
 * @param {Client} client
 */
class FlightOffers {
  constructor(client) {
    this.client = client;
    this.prediction = new FlightChoicePrediction(client);
    this.pricing = new Pricing(client);
    this.upselling = new Upselling(client);
  }
}

export default FlightOffers;