@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
14 lines (13 loc) • 552 B
TypeScript
import { AdjustmentTotalsBreakdown } from './adjustment-totals-breakdown.js';
import { type CurrencyCode } from '../../enums/index.js';
import { type IAdjustmentTotalsResponse } from '../../types/index.js';
export declare class AdjustmentTotals {
readonly subtotal: string;
readonly tax: string;
readonly total: string;
readonly fee: string;
readonly earnings: string;
readonly breakdown: AdjustmentTotalsBreakdown | null;
readonly currencyCode: CurrencyCode;
constructor(adjustmentTotals: IAdjustmentTotalsResponse);
}