Values.UtteranceDataSourceProvides information about a single utterance that was made to your bot.
type nonrec t = {utteranceString : UtteranceString.t option;The text that was entered by the user or the text representation of an audio clip.
*)count : Count.t option;The number of times that the utterance was processed.
*)distinctUsers : Count.t option;The total number of individuals that used the utterance.
*)firstUtteredDate : Timestamp.t option;The date that the utterance was first recorded.
*)lastUtteredDate : Timestamp.t option;The date that the utterance was last recorded.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Integer of Count.t
| `String of UtteranceString.t
| `Timestamp of Timestamp.t ])
list ]