@adobe/pdfservices-node-sdk
Version:
The Adobe PDF Services Node.js SDK provides APIs for creating, combining, exporting and manipulating PDFs.
18 lines (17 loc) • 463 B
TypeScript
/**
* Supported types of content to encrypt for {@link ProtectPDFJob}
*/
export declare enum ContentEncryption {
/**
* Encrypts all the content of the PDF file
*/
ALL_CONTENT = "ALL_CONTENT",
/**
* Encrypts all the content except the metadata of the PDF file
*/
ALL_CONTENT_EXCEPT_METADATA = "ALL_CONTENT_EXCEPT_METADATA",
/**
* Encrypts only embedded files
*/
ONLY_EMBEDDED_FILES = "ONLY_EMBEDDED_FILES"
}