@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
10 lines (9 loc) • 323 B
JavaScript
import { MoneyNotification } from './money-notification.js';
export class UnitPriceOverrideNotification {
countryCodes;
unitPrice;
constructor(unitPriceOverride) {
this.countryCodes = unitPriceOverride.country_codes;
this.unitPrice = new MoneyNotification(unitPriceOverride.unit_price);
}
}