UNPKG

@bebapps/rapyd-sdk

Version:

An un-official [Rapyd](https://rapyd.net) SDK for Node.js.

20 lines (19 loc) 621 B
export interface PaymentFees { /** * Describes the fee for processing the transaction. See ***Transaction Fee Object***, below. */ transaction_fee: object; /** * Describes the fees for processing the currency exchange. Relevant to payments with FX. * See ***FX Fee Object***, below. */ fx_fee: object; /** * The total gross fees for the transaction, in units defined by `currency_code`. Relevant to responses. */ gross_fees: number; /** * The total net fees for the transaction, in units defined by `merchant_requested_currency`. Relevant to responses. */ net_fees: number; };