PdfValidationResult
Represents the outcome of a PDF conformance validation run performed by PdfValidator.
from nutrient_sdk import PdfValidationResultConstruction
PdfValidationResult cannot be instantiated directly. Obtain instances through static factory methods or via other SDK classes.
Properties
is_valid
@propertydef is_valid(self) -> boolIndicates whether the document conforms to the conformance level it was validated against.
Type: bool
Read-only property.
report
@propertydef report(self) -> strThe detailed validation report.
Type: str
Read-only property.
validated_conformance
@propertydef validated_conformance(self) -> PdfValidationConformanceThe conformance level the document was validated against.
Type: PdfValidationConformance
Read-only property.