All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amadeus.shopping.Activities Maven / Gradle / Ivy

package com.amadeus.shopping;

import com.amadeus.Amadeus;
import com.amadeus.Params;
import com.amadeus.Response;
import com.amadeus.exceptions.ResponseException;
import com.amadeus.resources.Activity;
import com.amadeus.resources.Resource;
import com.amadeus.shopping.activities.BySquare;

/**
 * 

* A namespaced client for the * /v1/shopping/activities endpoints. *

* *

* Access via the Amadeus client object. *

* *
 * Amadeus amadeus = Amadeus.builder("clientId", "secret").build();
 * amadeus.shopping.activities;
*/ public class Activities { private Amadeus client; /** *

* A namespaced client for the * /v1/shopping/activities/by-square endpoints. *

*/ public BySquare bySquare; /** * Constructor. * @hide */ public Activities(Amadeus client) { this.client = client; this.bySquare = new BySquare(client); } /** *

* Returns a list of activities near to a given point. *

* *
   * amadeus.amadeus.shopping.activities.get(Params
   *   .with("longitude", 2.160873)
   *   .and("latitude", 41.397158));
* * @param params the parameters to send to the API * @return an API response object * @throws ResponseException when an exception occurs */ public Activity[] get(Params params) throws ResponseException { Response response = client.get("/v1/shopping/activities", params); return (Activity[]) Resource.fromArray(response, Activity[].class); } /** * Convenience method for calling get without any parameters. * @see Activities#get() */ public Activity[] get() throws ResponseException { return get(null); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy