@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
44 lines (43 loc) • 1.12 kB
TypeScript
export declare class AdditionalDataWallets {
/**
* The Android Pay token retrieved from the SDK.
*/
"androidpay_token"?: string;
/**
* The Mastercard Masterpass Transaction ID retrieved from the SDK.
*/
"masterpass_transactionId"?: string;
/**
* The Apple Pay token retrieved from the SDK.
*/
"payment_token"?: string;
/**
* The Google Pay token retrieved from the SDK.
*/
"paywithgoogle_token"?: string;
/**
* The Samsung Pay token retrieved from the SDK.
*/
"samsungpay_token"?: string;
/**
* The Visa Checkout Call ID retrieved from the SDK.
*/
"visacheckout_callId"?: 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();
}