UNPKG

@adyen/api-library

Version:

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

36 lines (35 loc) 836 B
export declare class PaymentInstrument { /** * The description of the resource. */ "description"?: string; /** * The unique identifier of the resource. */ "id"?: string; /** * The reference for the resource. */ "reference"?: string; /** * The type of wallet that the network token is associated with. */ "tokenType"?: string; 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(); }