UNPKG

@adobe/pdfservices-node-sdk

Version:

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

22 lines (21 loc) 753 B
import { NotifierData } from "./NotifierData"; /** * Represents the configuration for the notifier data. */ export declare class CallbackNotifierData implements NotifierData { private readonly _url; private readonly _headers?; /** * Constructs an instance of `CallbackNotifierData` using a callback url and headers. * * @param {object} params - The parameters for constructing an instance of `CallbackNotifierData`. * @param {string} params.url - The URL to which the callback should be sent. * @param {object} [params.headers] - Optional headers to include in the callback request. */ constructor(params: { url: string; headers?: { [key: string]: string; }; }); }