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