Module Values.ConversationLevelTestResultItemSource

The test result evaluation item at the conversation level.

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

    The conversation Id of the test result evaluation item.

    *)
  2. endToEndResult : TestResultMatchStatus.t option;
    (*

    The end-to-end success or failure of the test result evaluation item.

    *)
  3. speechTranscriptionResult : TestResultMatchStatus.t option;
    (*

    The speech transcription success or failure of the test result evaluation item.

    *)
  4. intentClassificationResults : ConversationLevelIntentClassificationResults.t option;
    (*

    The intent classification of the test result evaluation item.

    *)
  5. slotResolutionResults : ConversationLevelSlotResolutionResults.t option;
    (*

    The slot success or failure of the test result evaluation item.

    *)
}
Sourceval make : ?conversationId:??? -> ?endToEndResult:??? -> ?speechTranscriptionResult:??? -> ?intentClassificationResults:??? -> ?slotResolutionResults:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of Name.t ]) list ] list | `String of TestSetConversationId.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