@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
42 lines (41 loc) • 1.16 kB
TypeScript
export declare class PaymentInstrumentGroupInfo {
/**
* 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;
/**
* Properties of the payment instrument group.
*/
"properties"?: {
[]: string;
};
/**
* Your reference for the payment instrument group.
*/
"reference"?: string;
/**
* The tx variant of the payment instrument group.
*/
"txVariant": string;
static readonly discriminator: string | undefined;
static readonly mapping: {
[]: 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();
}