@airwallex/node-sdk
Version:
Airwallex Node.js SDK
33 lines • 975 B
TypeScript
import { ApplicationFeeOption } from './applicationFeeOption';
import { BeneficiaryDto } from './beneficiaryDto';
import { PayerDto } from './payerDto';
export interface DraftBatchItemRequestDto {
application_fee_options?: Array<ApplicationFeeOption>;
beneficiary?: BeneficiaryDto;
beneficiary_id?: string;
fee_paid_by?: string;
metadata?: {
[key: string]: string;
};
payer?: PayerDto;
payer_id?: string;
reason?: string;
reference?: string;
remarks?: string;
request_id: string;
source_amount?: number;
source_currency: string;
swift_charge_option?: string;
transfer_amount?: number;
transfer_currency: string;
transfer_method?: string;
}
export declare namespace DraftBatchItemRequestDto {
const discriminator: string;
const attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
}
//# sourceMappingURL=draftBatchItemRequestDto.d.ts.map