@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
34 lines (33 loc) • 1.03 kB
TypeScript
import { CheckoutForwardResponseFromUrl } from "./checkoutForwardResponseFromUrl";
export declare class CheckoutForwardResponse {
/**
* Merchant defined payment reference.
*/
"merchantReference"?: string;
/**
* Adyen\'s 16-character reference associated with the transaction/request. This value is globally unique. Use this reference when you communicate with us about this request.
*/
"pspReference"?: string;
"response": CheckoutForwardResponseFromUrl;
/**
* The unique identifier of the token.
*/
"storedPaymentMethodId"?: string;
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();
}