@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
55 lines (54 loc) • 1.34 kB
TypeScript
export declare class DokuDetails {
/**
* 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;
/**
* **doku**
*/
"type": DokuDetails.TypeEnum;
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 DokuDetails {
enum TypeEnum {
DokuMandiriVa = "doku_mandiri_va",
DokuCimbVa = "doku_cimb_va",
DokuDanamonVa = "doku_danamon_va",
DokuBniVa = "doku_bni_va",
DokuPermataLiteAtm = "doku_permata_lite_atm",
DokuBriVa = "doku_bri_va",
DokuBcaVa = "doku_bca_va",
DokuAlfamart = "doku_alfamart",
DokuIndomaret = "doku_indomaret",
DokuWallet = "doku_wallet",
DokuOvo = "doku_ovo"
}
}