@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
32 lines (31 loc) • 1.16 kB
TypeScript
import { Amount } from './amount';
export declare class TransferFundsRequest {
'amount': Amount;
/**
* The code of the account to which the funds are to be credited. >The state of the Account Holder of this account must be Active.
*/
'destinationAccountCode': string;
/**
* A value that can be supplied at the discretion of the executing user in order to link multiple transactions to one another.
*/
'merchantReference'?: string;
/**
* The code of the account from which the funds are to be debited. >The state of the Account Holder of this account must be Active and allow payouts.
*/
'sourceAccountCode': string;
/**
* The code related to the type of transfer being performed. >The permitted codes differ for each platform account and are defined in their service level agreement.
*/
'transferCode': string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}