com.slack.api.methods.SlackApiResponse Maven / Gradle / Ivy
package com.slack.api.methods;
import java.util.List;
import java.util.Map;
/**
* The marker interface for Slack Web API responses.
*
* Refer to https://api.slack.com/methods for the API details.
*/
public interface SlackApiResponse {
/**
* Returns all the HTTP response headers in the API response. The keys are lower-cased.
*/
Map> getHttpResponseHeaders();
/**
* Sets the response headers. Pass a Map object with lower-cased keys.
*/
void setHttpResponseHeaders(Map> headers);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy