UNPKG

@adobe/pdfservices-node-sdk

Version:

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

9 lines (8 loc) 470 B
import { PasswordProtection } from "./PasswordProtection"; export declare class ProtectPDFParamsPayload { protected readonly _passwordProtection?: PasswordProtection; protected readonly _encryptionAlgorithm?: string; protected readonly _contentToEncrypt?: string; protected readonly _permissions?: Array<string>; constructor(passwordProtection?: PasswordProtection, encryptionAlgorithm?: string, contentToEncrypt?: string, permissions?: string[]); }