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) 1.01 kB
/** * Response object encapsulating {@link PDFServicesJob} status and retry interval. */ export declare class PDFServicesJobStatusResponse { private readonly _status; private readonly _headers; /** * Constructs {@link PDFServicesJob} status response with its status, headers. * * @param status Status of the {@link PDFServicesJob}. * @param headers Headers of the {@link PDFServicesResponse}. */ constructor(status: string, headers: { [key: string]: string; }); /** * Returns string representation of {@link PDFServicesJobStatus} for the {@link PDFServicesJob}. * * @returns string representation of {@link PDFServicesJobStatus} for the {@link PDFServicesJob} */ get status(): string; /** * Returns retry interval for status polling of the {@link PDFServicesJob} in seconds. * * @returns retry interval for status polling of the {@link PDFServicesJob} in seconds */ get retryInterval(): number; }