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

Method header

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

Sets a header per-request @param key Header key @param value Header value @return The request itself

(String key, String value)

Source from the content-addressed store, hash-verified

132 * @return The request itself
133 */
134 public Request header(String key, String value) {
135 this.headers.put(key, value);
136 return this;
137 }
138
139 /**
140 * Reads and logs the Asana-Change header

Calls

no outgoing calls