Values.BatchUpdateCustomVocabularyItemRequestSourceUpdate a batch of custom vocabulary items for a given bot locale's custom vocabulary.
type nonrec t = {botId : Id.t;The identifier of the bot associated with this custom vocabulary
*)botVersion : BotVersion.t;The identifier of the version of the bot associated with this custom vocabulary.
*)localeId : LocaleId.t;The identifier of the language and locale where this custom vocabulary is used. The string must match one of the supported locales. For more information, see Supported Languages .
*)customVocabularyItemList : UpdateCustomVocabularyItemsList.t;A list of custom vocabulary items with updated fields. Each entry must contain a phrase and can optionally contain a displayAs and/or a weight.
*)}val make :
botId:Id.t ->
botVersion:BotVersion.t ->
localeId:LocaleId.t ->
customVocabularyItemList:UpdateCustomVocabularyItemsList.t ->
unit ->
t