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.

14 lines (13 loc) 587 B
import { type AdjustmentType } from '../../enums/index.js'; import { AdjustmentProration } from './adjustment-proration.js'; import { AdjustmentItemTotals } from './adjustment-item-totals.js'; import { type IAdjustmentItemResponse } from '../../types/index.js'; export declare class AdjustmentItem { readonly id: string; readonly itemId: string; readonly type: AdjustmentType; readonly amount: string | null; readonly proration: AdjustmentProration | null; readonly totals: AdjustmentItemTotals | null; constructor(adjustmentItem: IAdjustmentItemResponse); }