@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
30 lines (29 loc) • 668 B
TypeScript
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 discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}