Values.StatusSourceProvides information about the status of documents submitted for indexing.
type nonrec t = {documentId : DocumentId.t option;The identifier of the document.
*)documentStatus : DocumentStatus.t option;The current status of a document. If the document was submitted for deletion, the status is NOT_FOUND after the document is deleted.
*)failureCode : String_.t option;Indicates the source of the error.
*)failureReason : String_.t option;Provides detailed information about why the document couldn't be indexed. Use this information to correct the error before you resubmit the document for indexing.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of DocumentId.t ]) list ]