@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
47 lines (46 loc) • 1.24 kB
TypeScript
export declare class EcontextVoucherDetails {
/**
* The checkout attempt identifier.
*/
'checkoutAttemptId'?: string;
/**
* The shopper\'s first name.
*/
'firstName': string;
/**
* The shopper\'s last name.
*/
'lastName': string;
/**
* The shopper\'s email.
*/
'shopperEmail': string;
/**
* The shopper\'s contact number. It must have an international number format, for example **+31 20 779 1846**. Formats like **+31 (0)20 779 1846** or **0031 20 779 1846** are not accepted.
*/
'telephoneNumber': string;
/**
* **econtextvoucher**
*/
'type': EcontextVoucherDetails.TypeEnum;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export declare namespace EcontextVoucherDetails {
enum TypeEnum {
EcontextSevenEleven = "econtext_seven_eleven",
EcontextOnline = "econtext_online",
Econtext = "econtext",
EcontextStores = "econtext_stores",
EcontextAtm = "econtext_atm"
}
}