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; } //# sourceMappingURL=PaymentFees.d.ts.map