Module Values.TestExecutionSummarySource

Summarizes metadata about the test execution.

Sourcetype nonrec t = {
  1. testExecutionId : Id.t option;
    (*

    The unique identifier of the test execution.

    *)
  2. creationDateTime : Timestamp.t option;
    (*

    The date and time at which the test execution was created.

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

    The date and time at which the test execution was last updated.

    *)
  4. testExecutionStatus : TestExecutionStatus.t option;
    (*

    The current status of the test execution.

    *)
  5. testSetId : Id.t option;
    (*

    The unique identifier of the test set used in the test execution.

    *)
  6. testSetName : Name.t option;
    (*

    The name of the test set used in the test execution.

    *)
  7. target : TestExecutionTarget.t option;
    (*

    Contains information about the bot used for the test execution..

    *)
  8. apiMode : TestExecutionApiMode.t option;
    (*

    Specifies whether the API mode for the test execution is streaming or non-streaming.

    *)
  9. testExecutionModality : TestExecutionModality.t option;
    (*

    Specifies whether the data used for the test execution is written or spoken.

    *)
}
Sourceval make : ?testExecutionId:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?testExecutionStatus:??? -> ?testSetId:??? -> ?testSetName:??? -> ?target:??? -> ?apiMode:??? -> ?testExecutionModality:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Id.t | `Structure of (string * [> `Structure of (string * [> `String of Id.t ]) list ]) list | `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