UNPKG

@mia-burton/klarna-node

Version:
29 lines (28 loc) 675 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.UrlsInput = void 0; class UrlsInput { constructor(confirmation, authorization) { this._confirmation = confirmation; this._authorization = authorization; } get confirmation() { return this._confirmation; } get authorization() { return this._authorization; } get notification() { return this._notification; } set notification(value) { this._notification = value; } get push() { return this._push; } set push(value) { this._push = value; } } exports.UrlsInput = UrlsInput;