sfr_core/app_credentials.rs
1//! An App Credentials for Slack.
2
3/// The type contains An App Credentials from `https://api.slack.com/apps/[App ID]/general`.
4#[derive(Clone, Debug)]
5pub struct AppCredentials {
6 /// The Client ID.
7 pub id: String,
8
9 /// The Client Secret.
10 pub secret: String,
11
12 /// The Signing Secret.
13 pub signing_secret: String,
14
15 /// The Verification Token.
16 pub verification_token: String,
17}