@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
8 lines (7 loc) • 308 B
TypeScript
import { AdjustmentOriginalAmount } from './adjustment-original-amount.js';
import { type IChargebackFee } from '../../types/index.js';
export declare class ChargebackFee {
readonly amount: string;
readonly original: AdjustmentOriginalAmount | null;
constructor(chargebackFee: IChargebackFee);
}