slack-api-client 0.1.93

slack api client Project homepage: https://github.com/isaacadams/slack-api-client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
 * https://api.slack.com/methods/chat.postMessage#errors
 *
 * e.g.
 * {
 *  "ok": false,
 *  "error": "not_in_channel"
 * }
 *
 * this response occurs when trying to send a message to a channel that the bot has not been added to
 */

#[derive(serde::Serialize, serde::Deserialize)]
struct SlackHttpResponse {
    ok: bool,
    error: Option<String>,
}