@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
34 lines (33 loc) • 910 B
TypeScript
export declare class ModifyRequest {
/**
* This field contains additional data, which may be required for a particular payout request.
*/
"additionalData"?: {
[]: 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: {
[]: 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();
}