com.justai.jaicf.channel.slack.SlackChannelConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of slack Show documentation
Show all versions of slack Show documentation
JAICF-Kotlin Aimybox Slack implementation. Enables JAICF-Kotlin integration with Slack
The newest version!
package com.justai.jaicf.channel.slack
import com.slack.api.bolt.middleware.Middleware
/**
* Slack channel configuration
*
* @param botToken Bot User OAuth Access Token
* @param signingSecret App Signing Secret
* @param middleware a list of [Middleware]. Default middleware list will be created if [middleware] is null.
* */
data class SlackChannelConfig(
val botToken: String,
val signingSecret: String,
val middleware: List? = null
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy