Represents the result of applying a profile to a PDF.

interface ApplyProfileResult {
    Output: PdfInstance;
    Report: PdfInstance;
    Success: boolean;
}

Properties

Properties

Output: PdfInstance

The output PDF instance object after applying the profile.

Report: PdfInstance

The report PDF instance object generated during the profile application, if available.

Success: boolean

Indicates whether the profile was successfully applied.