UNPKG

@adyen/api-library

Version:

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

44 lines (43 loc) 1.18 kB
export declare class StoredValueVoidRequest { /** * The merchant account identifier, with which you want to process the transaction. */ "merchantAccount": string; /** * The original pspReference of the payment to modify. */ "originalReference": string; /** * Your reference for the payment modification. This reference is visible in Customer Area and in reports. Maximum length: 80 characters. */ "reference"?: string; /** * The physical store, for which this payment is processed. */ "store"?: string; /** * The reference of the tender. */ "tenderReference"?: string; /** * The unique ID of a POS terminal. */ "uniqueTerminalId"?: 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(); }