Sets entire query string object, overrides previously set query string parameters @param query Entire query object @return The request itself
(Map<String, Object> query)
| 62 | * @return The request itself |
| 63 | */ |
| 64 | public Request query(Map<String, Object> query) { |
| 65 | this.query = query; |
| 66 | return this; |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Sets a single key/value pair in the query string |
no outgoing calls