@adobe/pdfservices-node-sdk
Version:
The Adobe PDF Services Node.js SDK provides APIs for creating, combining, exporting and manipulating PDFs.
24 lines (23 loc) • 972 B
TypeScript
import { PDFServicesJobParams } from "../PDFServicesJobParams";
/**
* Parameters for getting properties of a PDF using {@link PDFPropertiesJob}.
*/
export declare class PDFPropertiesParams implements PDFServicesJobParams {
private readonly _includePageLevelProperties?;
/**
* Constructs a new `PDFPropertiesParams` instance.
*
* @param params - The parameters for constructing a `PDFPropertiesParams` instance.
* @param [params.includePageLevelProperties] Whether to include page level properties in the resulting
* PDF properties. Default value is `false`.
*/
constructor(params: {
includePageLevelProperties?: boolean;
});
/**
* Returns `true` if page level properties are set to be included in the resulting PDF properties.
*
* @returns `true` if page level properties are set to be included in the resulting PDF properties.
*/
get includePageLevelProperties(): boolean | undefined;
}