//! 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,
}