Module Values.ConversationSource

A conversation in an Amazon Q Business application.

Sourcetype nonrec t = {
  1. conversationId : ConversationId.t option;
    (*

    The identifier of the Amazon Q Business conversation.

    *)
  2. title : ConversationTitle.t option;
    (*

    The title of the conversation.

    *)
  3. startTime : Timestamp.t option;
    (*

    The start time of the conversation.

    *)
}
Sourceval make : ?conversationId:??? -> ?title:??? -> ?startTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ConversationId.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