Module Values.GetJobEntityErrorSource

The error for the job entity.

Sourcetype nonrec t = {
  1. jobDetails : JobDetailsError.t option;
    (*

    The job details for the failed job entity.

    *)
  2. jobAttachmentDetails : JobAttachmentDetailsError.t option;
    (*

    The job attachment details for the failed job entity.

    *)
  3. stepDetails : StepDetailsError.t option;
    (*

    The step details for the failed job entity.

    *)
  4. environmentDetails : EnvironmentDetailsError.t option;
    (*

    The environment details for the failed job entity.

    *)
}
Sourceval make : ?jobDetails:??? -> ?jobAttachmentDetails:??? -> ?stepDetails:??? -> ?environmentDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of JobId.t ]) 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