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) 444 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.UnitPriceOverride = void 0; const money_js_1 = require("./money.js"); class UnitPriceOverride { countryCodes; unitPrice; constructor(unitPriceOverride) { this.countryCodes = unitPriceOverride.country_codes; this.unitPrice = new money_js_1.Money(unitPriceOverride.unit_price); } } exports.UnitPriceOverride = UnitPriceOverride;