Module Values.SelfServiceConversationHistorySource

The conversation history data to included in conversation context data before the Amazon Q in Connect session.

Sourcetype nonrec t = {
  1. turnNumber : Integer.t option;
    (*

    The number of turn of the conversation history data.

    *)
  2. inputTranscript : SensitiveString.t option;
    (*

    The input transcript of the conversation history data.

    *)
  3. botResponse : SensitiveString.t option;
    (*

    The bot response of the conversation history data.

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

    The timestamp of the conversation history entry.

    *)
}
Sourceval make : ?turnNumber:??? -> ?inputTranscript:??? -> ?botResponse:??? -> ?timestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of SensitiveString.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