com.slack.api.status.v1.LegacyStatusClient Maven / Gradle / Ivy
The newest version!
package com.slack.api.status.v1;
import com.slack.api.status.v1.model.LegacyCurrentStatus;
import com.slack.api.status.v1.model.LegacySlackIssue;
import java.io.IOException;
import java.util.List;
/**
* Slack Status API V1 Client.
*
* @see Slack Status API
*/
public interface LegacyStatusClient {
String ENDPOINT_URL_PREFIX = "https://slack-status.com/api/v1.0.0/";
String getEndpointUrlPrefix();
void setEndpointUrlPrefix(String endpointUrlPrefix);
LegacyCurrentStatus current() throws IOException, LegacyStatusApiException;
List history() throws IOException, LegacyStatusApiException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy