UNPKG

@adyen/api-library

Version:

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

34 lines (33 loc) 910 B
export declare class ModifyRequest { /** * This field contains additional data, which may be required for a particular payout request. */ "additionalData"?: { [key: string]: string; }; /** * The merchant account identifier, with which you want to process the transaction. */ "merchantAccount": string; /** * The PSP reference received in the `/submitThirdParty` response. */ "originalReference": 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(); }