UNPKG

@adyen/api-library

Version:

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

40 lines (39 loc) 1.08 kB
export declare class PaymentInstrumentGroup { /** * The unique identifier of the [balance platform](https://docs.adyen.com/api-explorer/#/balanceplatform/latest/get/balancePlatforms/{id}__queryParam_id) to which the payment instrument group belongs. */ 'balancePlatform': string; /** * Your description for the payment instrument group. */ 'description'?: string; /** * The unique identifier of the payment instrument group. */ 'id'?: string; /** * Properties of the payment instrument group. */ 'properties'?: { [key: string]: string; }; /** * Your reference for the payment instrument group. */ 'reference'?: string; /** * The tx variant of the payment instrument group. */ 'txVariant': string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }