UNPKG

@mia-burton/klarna-node

Version:
73 lines (72 loc) 1.57 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Order = void 0; class Order { get billingAddress() { return this._billingAddress; } set billingAddress(value) { this._billingAddress = value; } get shippingAddress() { return this._shippingAddress; } set shippingAddress(value) { this._shippingAddress = value; } get locale() { return this._locale; } set locale(value) { this._locale = value; } get amount() { return this._amount; } set amount(value) { this._amount = value; } get lines() { return this._lines; } set lines(value) { this._lines = value; } get country() { return this._country; } set country(value) { this._country = value; } get currency() { return this._currency; } set currency(value) { this._currency = value; } get mertchantReference() { return this._mertchantReference; } set mertchantReference(value) { this._mertchantReference = value; } get capturedAmount() { return this._capturedAmount; } set capturedAmount(value) { this._capturedAmount = value; } get status() { return this._status; } set status(value) { this._status = value; } get fraudStatus() { return this._fraudStatus; } set fraudStatus(value) { this._fraudStatus = value; } } exports.Order = Order;