UNPKG

@paddle/paddle-node-sdk

Version:

A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.

16 lines (15 loc) 660 B
import { ChargebackFee } from './chargeback-fee.js'; import { type PayoutCurrencyCode } from '../../enums/index.js'; import { type ITransactionPayoutTotalsAdjustedResponse } from '../../types/index.js'; export declare class TransactionPayoutTotalsAdjusted { readonly subtotal: string; readonly tax: string; readonly total: string; readonly fee: string; readonly chargebackFee: ChargebackFee | null; readonly earnings: string; readonly currencyCode: PayoutCurrencyCode; readonly exchangeRate: string; readonly retainedFee: string; constructor(transactionPayoutTotalsAdjusted: ITransactionPayoutTotalsAdjustedResponse); }