@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) • 528 B
TypeScript
import { type AdjustmentType } from '../../enums/index.js';
import { AdjustmentItemTotals, AdjustmentProration } from '../adjustment/index.js';
import { type IAdjustmentItemResponse } from '../../types/index.js';
export declare class NextTransactionAdjustmentItem {
readonly itemId: string;
readonly type: AdjustmentType;
readonly amount: string | null;
readonly proration: AdjustmentProration | null;
readonly totals: AdjustmentItemTotals | null;
constructor(adjustmentItem: IAdjustmentItemResponse);
}