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.

11 lines (10 loc) 577 B
import { SubscriptionTimePeriod } from './subscription-time-period.js'; import { TransactionDetailsPreview } from './transaction-details-preview.js'; import { NextTransactionAdjustmentPreview } from './next-transaction-adjustment-preview.js'; import { type INextTransactionResponse } from '../../types/index.js'; export declare class NextTransaction { readonly billingPeriod: SubscriptionTimePeriod; readonly details: TransactionDetailsPreview; readonly adjustments: NextTransactionAdjustmentPreview[]; constructor(nextTransaction: INextTransactionResponse); }