Module Values.BatchErrorSource

An error that occurred during a batch operation.

Sourcetype nonrec t = {
  1. accessorId : AccessorId.t option;
    (*

    The accessor identifier that's related to the error.

    *)
  2. error : ErrorCode.t option;
    (*

    The error code.

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

    Description of the error.

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