Module Values.ProblemSource

Represents a specific warning or failure.

Sourcetype nonrec t = {
  1. run : ProblemDetail.t option;
    (*

    Information about the associated run.

    *)
  2. job : ProblemDetail.t option;
    (*

    Information about the associated job.

    *)
  3. suite : ProblemDetail.t option;
    (*

    Information about the associated suite.

    *)
  4. test : ProblemDetail.t option;
    (*

    Information about the associated test.

    *)
  5. device : Device.t option;
    (*

    Information about the associated device.

    *)
  6. result : ExecutionResult.t option;
    (*

    The problem's result. Allowed values include: PENDING PASSED WARNED FAILED SKIPPED ERRORED STOPPED

    *)
  7. message : Message.t option;
    (*

    A message about the problem's result.

    *)
}
Sourceval make : ?run:??? -> ?job:??? -> ?suite:??? -> ?test:??? -> ?device:??? -> ?result:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Message.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of AmazonResourceName.t | `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of String_.t ] list | `String of AmazonResourceName.t ]) list ]) list ] list | `Long of Long.t | `String of AmazonResourceName.t | `Structure of (string * [> `Double of Double.t | `Integer of Integer.t | `String of String_.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