@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
11 lines (10 loc) • 432 B
TypeScript
import { Price } from '../price/index.js';
import { Proration } from './proration.js';
import { type ITransactionItemPreviewResponse } from '../../types/index.js';
export declare class TransactionItemPreview {
readonly price: Price | null;
readonly quantity: number;
readonly includeInTotals: boolean | null;
readonly proration: Proration | null;
constructor(transactionItem: ITransactionItemPreviewResponse);
}