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.

12 lines (11 loc) 416 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; constructor(totalAdjustments: ITotalAdjustmentsResponse); }