@adobe/pdfservices-node-sdk
Version:
The Adobe PDF Services Node.js SDK provides APIs for creating, combining, exporting and manipulating PDFs.
21 lines (20 loc) • 814 B
TypeScript
import { NotifierType } from "./NotifierType";
import { CallbackNotifierData } from "./CallbackNotifierData";
/**
* Represents the configuration for a notifier to be used to notify user about the completion of a PDF Services job.
*/
export declare class NotifierConfig {
private readonly type;
private readonly data;
/**
* Constructs an instance of `NotifierConfig`.
*
* @param params - The parameters for constructing an instance of `NotifierConfig`.
* @param params.type - The {@link NotifierType} specifies the type of notifier. Cannot be undefined.
* @param params.data - The {@link CallbackNotifierData} encapsulates callback notifier data. Cannot be undefined.
*/
constructor(params: {
type: NotifierType;
data: CallbackNotifierData;
});
}