UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

35 lines (34 loc) 924 B
import { SettingType } from "./settingType"; import { Target } from "./target"; export declare class WebhookSetting { /** * The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes) of the balance. */ "currency": string; /** * The unique identifier of the webhook setting. */ "id": string; "status": string; "target": Target; "type": SettingType; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); } export declare namespace WebhookSetting { }