@mia-burton/klarna-node
Version:
A Node.js module for Klarna
55 lines (54 loc) • 1.2 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.OrderInput = void 0;
class OrderInput {
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;
}
}
exports.OrderInput = OrderInput;