1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! An App Credentials for Slack.

/// The type contains An App Credentials from `https://api.slack.com/apps/[App ID]/general`.
#[derive(Clone, Debug)]
pub struct AppCredentials {
    /// The Client ID.
    pub id: String,

    /// The Client Secret.
    pub secret: String,

    /// The Signing Secret.
    pub signing_secret: String,

    /// The Verification Token.
    pub verification_token: String,
}