Module Values_2.TestCaseExecutionSource

Contains information about a test case execution.

Sourcetype nonrec t = {
  1. startTime : Values_0.Timestamp.t option;
    (*

    The timestamp when the test case execution started.

    *)
  2. endTime : Values_0.Timestamp.t option;
    (*

    The timestamp when the test case execution ended.

    *)
  3. testCaseExecutionId : Values_1.TestCaseExecutionId.t option;
    (*

    The identifier of the test case execution.

    *)
  4. testCaseId : Values_0.TestCaseId.t option;
    (*

    The identifier of the test case.

    *)
  5. testCaseExecutionStatus : Values_1.TestCaseExecutionStatus.t option;
    (*

    The status of the test case execution.

    *)
  6. tags : Values_0.TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource.

    *)
}
Sourceval make : ?startTime:??? -> ?endTime:??? -> ?testCaseExecutionId:??? -> ?testCaseId:??? -> ?testCaseExecutionStatus:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of string ] * [> `String of string ]) list | `String of Values_1.TestCaseExecutionId.t | `Timestamp of Values_0.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