UNPKG

cecon-interfaces

Version:
22 lines (21 loc) 763 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PayioCompanyNatipayCredentialEntity = void 0; var PayioCompanyNatipayCredentialEntity = /** @class */ (function () { function PayioCompanyNatipayCredentialEntity(data) { this.accessToken = ''; this.expiresAt = new Date(); this.expiresIn = 0; this.refreshToken = ''; this.tokenType = ''; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return PayioCompanyNatipayCredentialEntity; }()); exports.PayioCompanyNatipayCredentialEntity = PayioCompanyNatipayCredentialEntity;