A helper module for making generic POST requests calls. It is used by every namespaced API POST method. @see Amadeus#post(String, Params)
(String path)
| 111 | * @see Amadeus#post(String, Params) |
| 112 | */ |
| 113 | public Response post(String path) throws ResponseException { |
| 114 | return request(HttpVerbs.POST, path, null, null); |
| 115 | } |
| 116 | |
| 117 | /** |
| 118 | * <p> |