Module Values.DocumentServiceExceptionSource

Information about any problems encountered while processing an upload request.

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

    The return status of a document upload request, error or success.

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

    The description of the errors returned by the document service.

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