@adobe/pdfservices-node-sdk
Version:
The Adobe PDF Services Node.js SDK provides APIs for creating, combining, exporting and manipulating PDFs.
34 lines (33 loc) • 1.1 kB
TypeScript
/**
* Supported document permission types for {@link ProtectPDFJob}
*/
export declare enum Permission {
/**
* Enables low quality printing of the PDF document
*/
PRINT_LOW_QUALITY = "PRINT_LOW_QUALITY",
/**
* Enables high quality printing of the PDF document
*/
PRINT_HIGH_QUALITY = "PRINT_HIGH_QUALITY",
/**
* Enables all the editing permissions in the PDF document except commenting and page extraction
*/
EDIT_CONTENT = "EDIT_CONTENT",
/**
* Enables insertion, deletion and rotation of pages in a PDF document
*/
EDIT_DOCUMENT_ASSEMBLY = "EDIT_DOCUMENT_ASSEMBLY",
/**
* Enables additions of comments, digital signatures and filling in of forms in a PDF document
*/
EDIT_ANNOTATIONS = "EDIT_ANNOTATIONS",
/**
* Enables filling in of forms, digital signature and creation of template pages in a PDF document
*/
EDIT_FILL_AND_SIGN_FORM_FIELDS = "EDIT_FILL_AND_SIGN_FORM_FIELDS",
/**
* Enables copying of content from the PDF document
*/
COPY_CONTENT = "COPY_CONTENT"
}