Module Values.UtteranceDataSource

Provides information about a single utterance that was made to your bot.

Sourcetype nonrec t = {
  1. utteranceString : UtteranceString.t option;
    (*

    The text that was entered by the user or the text representation of an audio clip.

    *)
  2. count : Count.t option;
    (*

    The number of times that the utterance was processed.

    *)
  3. distinctUsers : Count.t option;
    (*

    The total number of individuals that used the utterance.

    *)
  4. firstUtteredDate : Timestamp.t option;
    (*

    The date that the utterance was first recorded.

    *)
  5. lastUtteredDate : Timestamp.t option;
    (*

    The date that the utterance was last recorded.

    *)
}
Sourceval make : ?utteranceString:??? -> ?count:??? -> ?distinctUsers:??? -> ?firstUtteredDate:??? -> ?lastUtteredDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Count.t | `String of UtteranceString.t | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t