UNPKG

@mia-burton/klarna-node

Version:
31 lines (30 loc) 644 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OrderLine = void 0; class OrderLine { get name() { return this._name; } set name(value) { this._name = value; } get quantity() { return this._quantity; } set quantity(value) { this._quantity = value; } get totalAmount() { return this._totalAmount; } set totalAmount(value) { this._totalAmount = value; } get unitPrice() { return this._unitPrice; } set unitPrice(value) { this._unitPrice = value; } } exports.OrderLine = OrderLine;