com.amadeus.Analytics Maven / Gradle / Ivy
package com.amadeus;
import com.amadeus.analytics.ItineraryPriceMetrics;
/**
*
* A namespaced client for the
* /v1/analytics
endpoints.
*
*
*
* Access via the Amadeus client object.
*
*
*
* Amadeus amadeus = Amadeus.builder("clientId", "secret").build();
* amadeus.analytics;
*
* @hide
*/
public class Analytics {
/**
*
* A namespaced client for the
* /v1/analytics/itineraryPriceMetrics
endpoints.
*
*/
public ItineraryPriceMetrics itineraryPriceMetrics;
/**
* Constructor.
* @hide
*/
public Analytics(Amadeus client) {
this.itineraryPriceMetrics = new ItineraryPriceMetrics(client);
}
}