Module Values.BatchResultErrorEntrySource

Gives a detailed description of failed messages in the batch.

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

    The Id of an entry in a batch request

    *)
  2. code : String_.t option;
    (*

    An error code representing why the action failed on this entry.

    *)
  3. message : String_.t option;
    (*

    A message explaining why the action failed on this entry.

    *)
  4. senderFault : Boolean.t option;
    (*

    Specifies whether the error happened due to the caller of the batch API action.

    *)
}
Sourceval make : ?id:??? -> ?code:??? -> ?message:??? -> ?senderFault:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.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