DigitalSigningOptions Interface
Represents options for digital signing functionality in the PDF viewer.
export declare interface DigitalSigningOptions
Remarks
These options configure the connection to a digital signing service and control whether signed documents are automatically downloaded after signing.
Fields
serverUrl
The URL of the server that provides digital signing services.
serverUrl: string;
Remarks
This should be the endpoint where the PDF viewer will send documents for signing.
apiPassword
The API password required to authenticate with the digital signing service.
apiPassword?: string;
Remarks
This password is used to authorize requests to the signing server. If not set, the user will be prompted to enter a password during the signing process.
autoDownload
Optional flag indicating whether signed documents should be automatically downloaded.
autoDownload?: boolean;
Remarks
When set to true, the viewer will automatically download and display the signed document after the signing process completes. Defaults to true if not specified.