UNPKG

cecon-interfaces

Version:
22 lines (21 loc) 715 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NatipayJwtPayloadDeviceEntity = void 0; var NatipayJwtPayloadDeviceEntity = /** @class */ (function () { // #endregion Properties (4) // #region Constructors (1) function NatipayJwtPayloadDeviceEntity(data) { // #region Properties (4) this.id = ''; this.name = ''; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return NatipayJwtPayloadDeviceEntity; }()); exports.NatipayJwtPayloadDeviceEntity = NatipayJwtPayloadDeviceEntity;