BotLocale

data class BotLocale(val customVocabulary: BotCustomVocabulary? = null, val description: String? = null, val intents: List<BotIntent>? = null, val localeId: String, val nluConfidenceThreshold: Double, val slotTypes: List<BotSlotType>? = null, val voiceSettings: BotVoiceSettings? = null)

A locale in the bot, which contains the intents and slot types that the bot uses in conversations with users in the specified language and locale.

Constructors

Link copied to clipboard
fun BotLocale(customVocabulary: BotCustomVocabulary? = null, description: String? = null, intents: List<BotIntent>? = null, localeId: String, nluConfidenceThreshold: Double, slotTypes: List<BotSlotType>? = null, voiceSettings: BotVoiceSettings? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard
val description: String? = null
Link copied to clipboard
val intents: List<BotIntent>? = null

List of intents

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val slotTypes: List<BotSlotType>? = null

List of SlotTypes

Link copied to clipboard