@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
24 lines (23 loc) • 932 B
TypeScript
export declare class AdditionalSettings {
/**
* Object containing list of event codes for which the notification will be sent.
*/
'includeEventCodes'?: Array<string>;
/**
* Object containing boolean key-value pairs. The key can be any [standard webhook additional setting](https://docs.adyen.com/development-resources/webhooks/additional-settings), and the value indicates if the setting is enabled. For example, `captureDelayHours`: **true** means the standard notifications you get will contain the number of hours remaining until the payment will be captured.
*/
'properties'?: {
[key: string]: boolean;
};
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}