@mia-burton/klarna-node
Version:
A Node.js module for Klarna
67 lines (66 loc) • 1.37 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Address = void 0;
class Address {
get city() {
return this._city;
}
set city(value) {
this._city = value;
}
get country() {
return this._country;
}
set country(value) {
this._country = value;
}
get email() {
return this._email;
}
set email(value) {
this._email = value;
}
get lastName() {
return this._lastName;
}
set lastName(value) {
this._lastName = value;
}
get firstName() {
return this._firstName;
}
set firstName(value) {
this._firstName = value;
}
get phone() {
return this._phone;
}
set phone(value) {
this._phone = value;
}
get postalCode() {
return this._postalCode;
}
set postalCode(value) {
this._postalCode = value;
}
get region() {
return this._region;
}
set region(value) {
this._region = value;
}
get streetAddress() {
return this._streetAddress;
}
set streetAddress(value) {
this._streetAddress = value;
}
get streetAddress2() {
return this._streetAddress2;
}
set streetAddress2(value) {
this._streetAddress2 = value;
}
}
exports.Address = Address;