MCPcopy Create free account
hub / github.com/Asana/java-asana / option

Method option

src/main/java/com/asana/requests/Request.java:122–125  ·  view source on GitHub ↗

Sets a client option per-request @param key Option name @param value Option value @return The request itself

(String key, Object value)

Source from the content-addressed store, hash-verified

120 * @return The request itself
121 */
122 public Request option(String key, Object value) {
123 this.options.put(key, value);
124 return this;
125 }
126
127 /**
128 * Sets a header per-request

Calls

no outgoing calls