UNPKG

scheunemann-interfaces

Version:
24 lines (23 loc) 813 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ClientAplicationCredentialEntity = void 0; var ClientAplicationCredentialEntity = /** @class */ (function () { // #endregion Properties (4) // #region Constructors (1) function ClientAplicationCredentialEntity(data) { // #region Properties (4) this.refreshToken = null; this.refreshTokenAt = null; this.secrets = null; this.token = null; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return ClientAplicationCredentialEntity; }()); exports.ClientAplicationCredentialEntity = ClientAplicationCredentialEntity;