A helper module for making generic DELETE requests calls. It is used by every namespaced API DELETE method. amadeus.booking.flightOrder("eJzTd9f3NjIJdzUGAAp%2fAiY=").delete(); It can be used to make any generic API call that is automatically authenticated using
(String path, Params params)
| 91 | * @return a Response object containing the status code, body, and parsed data. |
| 92 | */ |
| 93 | public Response delete(String path, Params params) throws ResponseException { |
| 94 | return request(HttpVerbs.DELETE, path, params, null); |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * A helper module for making generic DELETE requests calls. It is used by |