@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
28 lines (27 loc) • 1.08 kB
TypeScript
export declare class AdditionalSettingsResponse {
/**
* Object containing list of event codes for which the notification will not be sent.
*/
'excludeEventCodes'?: Array<string>;
/**
* 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;
}[];
}