Module Values.FailureDetailsSource

Contains error details for a failed batch job.

Sourcetype nonrec t = {
  1. message : String_.t option;
    (*

    A description of the error that caused the batch job failure.

    *)
  2. statusCode : Integer.t option;
    (*

    An HTTP status code representing the nature of the error.

    *)
}
Sourceval make : ?message:??? -> ?statusCode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.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