@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
15 lines (14 loc) • 606 B
TypeScript
import { Totals, UnitTotals } from '../shared/index.js';
import { Product } from '../product/index.js';
import { type ITransactionLineItemPreviewResponse } from '../../types/index.js';
import { Proration } from '../transaction/proration.js';
export declare class TransactionLineItemPreview {
readonly priceId: string;
readonly quantity: number;
readonly taxRate: string;
readonly unitTotals: UnitTotals;
readonly totals: Totals;
readonly product: Product;
readonly proration: Proration | null;
constructor(transactionLineItemPreview: ITransactionLineItemPreviewResponse);
}