Module Values.OverallTestResultItemSource

Information about the overall results for a test execution result.

Sourcetype nonrec t = {
  1. multiTurnConversation : Boolean.t option;
    (*

    Indicates whether the conversation contains multiple turns or not.

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

    The total number of overall results in the result of the test execution.

    *)
  3. speechTranscriptionResultCounts : TestResultMatchStatusCountMap.t option;
    (*

    The number of speech transcription results in the overall test.

    *)
  4. endToEndResultCounts : TestResultMatchStatusCountMap.t option;
    (*

    The number of results that succeeded.

    *)
}
Sourceval make : ?multiTurnConversation:??? -> ?totalResultCount:??? -> ?speechTranscriptionResultCounts:??? -> ?endToEndResultCounts:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Count.t | `Map of ([> `Enum of string ] * [> `Integer of Count.t ]) list ]) 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