@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
20 lines (19 loc) • 718 B
TypeScript
import { type ITransactionPayoutTotalsResponse } from '../../types/index.js';
import { type PayoutCurrencyCode } from '../../enums/index.js';
export declare class TransactionPayoutTotals {
readonly subtotal: string;
readonly discount: string;
readonly tax: string;
readonly total: string;
readonly credit: string;
readonly creditToBalance: string;
readonly balance: string;
readonly grandTotal: string;
readonly grandTotalTax: string;
readonly fee: string;
readonly earnings: string;
readonly currencyCode: PayoutCurrencyCode;
readonly exchangeRate: string;
readonly feeRate: string;
constructor(transactionPayoutTotals: ITransactionPayoutTotalsResponse);
}