@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
36 lines (35 loc) • 834 B
TypeScript
export declare class GivexResponseInfo {
/**
* The three-character ISO currency code
*/
"currencyCode"?: string;
/**
* The password provided by the acquirer.
*/
"password"?: string;
/**
* The sales channel used for the payment.
*/
"paymentFlow"?: string;
/**
* The username provided by the acquirer.
*/
"username"?: 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();
}