Module Values.SlotResolutionTestResultItemSource

Information about the success and failure rate of slot resolution in the results of a test execution.

Sourcetype nonrec t = {
  1. slotName : TestResultSlotName.t option;
    (*

    The name of the slot.

    *)
  2. resultCounts : SlotResolutionTestResultItemCounts.t option;
    (*

    A result for slot resolution in the results of a test execution.

    *)
}
Sourceval make : ?slotName:??? -> ?resultCounts:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of TestResultSlotName.t | `Structure of (string * [> `Integer of Count.t | `Map of ([> `Enum of string ] * [> `Integer of Count.t ]) list ]) 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