@mia-burton/klarna-node
Version:
A Node.js module for Klarna
79 lines (78 loc) • 1.73 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PaymentSession = void 0;
class PaymentSession {
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 authorizationToken() {
return this._authorizationToken;
}
set authorizationToken(value) {
this._authorizationToken = value;
}
get clientToken() {
return this._clientToken;
}
set clientToken(value) {
this._clientToken = value;
}
get status() {
return this._status;
}
set status(value) {
this._status = value;
}
get urls() {
return this._urls;
}
set urls(value) {
this._urls = value;
}
}
exports.PaymentSession = PaymentSession;