UNPKG

cecon-interfaces

Version:
20 lines (19 loc) 593 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PayioCardAuthEntity = void 0; var PayioCardAuthEntity = /** @class */ (function () { function PayioCardAuthEntity(data) { this.basic = null; this.password = null; this.user = null; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return PayioCardAuthEntity; }()); exports.PayioCardAuthEntity = PayioCardAuthEntity;