@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
35 lines (34 loc) • 1.06 kB
TypeScript
import { TokenRequestedType } from "./tokenRequestedType";
/**
* Surrogate of the PAN (Primary Account Number) of the payment card to identify the payment mean of the customer. It allows, for a merchant, to identify the customer.
*/
export declare class PaymentToken {
"TokenRequestedType": TokenRequestedType;
/**
* Payment token replacing the PAN of the payment card to identify the payment mean of the customer.
*/
"TokenValue": string;
/**
* Expiry date and time. Limits the validity of a payment token.
*/
"ExpiryDateTime"?: Date;
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();
}
export declare namespace PaymentToken {
}