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.

13 lines (12 loc) 450 B
import { type CurrencyCode } from '../../enums/index.js'; import { type ITotalAdjustmentsResponse } from '../../types/index.js'; export declare class TotalAdjustments { readonly subtotal: string; readonly tax: string; readonly total: string; readonly fee: string; readonly earnings: string; readonly currencyCode: CurrencyCode; readonly retainedFee: string; constructor(totalAdjustments: ITotalAdjustmentsResponse); }