UNPKG

@adobe/pdfservices-node-sdk

Version:

The Adobe PDF Services Node.js SDK provides APIs for creating, combining, exporting and manipulating PDFs.

29 lines (28 loc) 958 B
import { PDFServicesJobResult } from "./PDFServicesJobResult"; import { PDFProperties } from "./pdfproperties/PDFProperties"; /** * This class encapsulates the result of {@link PDFPropertiesJob}. */ export declare class PDFPropertiesResult implements PDFServicesJobResult { private readonly _pdfProperties; private readonly _pdfPropertiesJson; /** * Constructs a new `PDFPropertiesResult` instance with {@link PDFProperties} and PDF Properties JSON string * * @param pdfProperties - PDF Properties * @param pdfPropertiesJson - PDF Properties JSON String */ constructor(pdfProperties: PDFProperties, pdfPropertiesJson: string); /** * Returns {@link PDFProperties} * * @returns {@link PDFProperties} */ get pdfProperties(): PDFProperties; /** * Returns PDF Properties JSON string * * @returns PDF Properties JSON string */ get getPDFPropertiesJson(): string; }