amadeus4dev/amadeus-node

View on GitHub
src/amadeus/namespaces/e_reputation.js

Summary

Maintainability
A
0 mins
Test Coverage
import HotelSentiments    from './e_reputation/hotel_sentiments';

/**
 * A namespaced client for the
 * `/v2/e-reputation` endpoints
 *
 * Access via the {@link Amadeus} object
 *
 * ```js
 * let amadeus = new Amadeus();
 * amadeus.eReputation;
 * ```
 *
 * @param {Client} client
 * @property {hotelSentiments} hotel_sentiments
 */
class EReputation {
  constructor(client) {
    this.client             = client;
    this.hotelSentiments = new HotelSentiments(client);
  }
}

export default EReputation;