Nutrient Web SDK

Type Alias SignaturesInfo

Describes and persists the overall validation status of the document, based on the digital signatures it contains.

The information contained in the digital signatures included in a document can be extracted using NutrientViewer.Instance#getSignaturesInfo, which resolves with a NutrientViewer.SignaturesInfo object. This object represent the overall validation status of the document. For getting information about each individual signature from the document, an array of SignatureInfo is included under the signatures property.

To learn more about digital signatures validation check this guide article.

Type Alias

Example

Getting digital signatures data from a document

instance.getSignaturesInfo()
.then(function (signaturesInfo) {
console.log(signaturesInfo)
});

See Also

Properties

boolean

The document has been modified since the last signature was added to it.

signatures

Optional

Array with the properties of each digital signature.

"valid" | "warning" | "error" | "not_signed"

The different possible validation states of the document.