UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

48 lines (47 loc) 1.28 kB
export declare class NotifyShopperResult { /** * Reference of Pre-debit notification that is displayed to the shopper */ "displayedReference"?: string; /** * A simple description of the `resultCode`. */ "message"?: string; /** * The unique reference that is associated with the request. */ "pspReference"?: string; /** * Reference of Pre-debit notification sent in my the merchant */ "reference"?: string; /** * The code indicating the status of notification. */ "resultCode"?: string; /** * The unique reference for the request sent downstream. */ "shopperNotificationReference"?: string; /** * This is the recurringDetailReference returned in the response when token was created */ "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(); }