@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) • 806 B
TypeScript
import { PDFServicesJobParams } from "../PDFServicesJobParams";
/**
* Parameters for removing protection from PDF using {@link RemoveProtectionJob}.
*/
export declare class RemoveProtectionParams implements PDFServicesJobParams {
private readonly _password;
/**
* Constructs a new `RemoveProtectionParams` instance.
*
* @param params - The parameters for constructing a `RemoveProtectionParams` instance.
* @param params.password - The password to be used for removing security/permissions from a PDF file.
* Cannot be undefined.
*/
constructor(params: {
password: string;
});
/**
* Returns the password to be used for removing security/permissions from a PDF file.
*
* @returns The password.
*/
get password(): string;
}