amadeus4dev/amadeus-node

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

Summary

Maintainability
A
1 hr
Test Coverage
/**
 * A namespaced client for the
 * `/v1/shopping/flight-offers/upselling` endpoints
 *
 * Access via the {@link Amadeus} object
 *
 * ```js
 * let amadeus = new Amadeus();
 * amadeus.shopping.flightOffers.upselling;
 * ```
 *
 * @param {Client} client
 */
class Upselling {
  constructor(client) {
    this.client = client;
  }

  /**
   * Get available seats in different fare classes
   *
   * @param {Object} params
   * @return {Promise.<Response,ResponseError>} a Promise
   *
   * ```js
   * amadeus.shopping.flightOffers.upselling.post(body);
   * ```
   */
  post(params = {}) {
    return this.client.post('/v1/shopping/flight-offers/upselling', params);
  }
}

export default Upselling;