UNPKG

@studyportals/sp-hs-misc

Version:

Miscellaneous code used in HouseStark's projects

33 lines 1.16 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SuccessfulAuthenticationResult = void 0; /** * @deprecated Use @studyportals/client-internal-platform-sso */ class SuccessfulAuthenticationResult { constructor(userIdentifier, idToken, refreshToken, idTokenAvailabilityInMs, idTokenTimeOfCreation) { this.__i_successful_authentication_result__ = true; this._userIdentifier = userIdentifier; this._idToken = idToken; this._refreshToken = refreshToken; this._idTokenAvailabilityInMs = idTokenAvailabilityInMs; this._idTokenTimeOfCreation = idTokenTimeOfCreation; } get userIdentifier() { return this._userIdentifier; } get idToken() { return this._idToken; } get refreshToken() { return this._refreshToken; } get idTokenAvailabilityInMs() { return this._idTokenAvailabilityInMs; } get idTokenTimeOfCreation() { return this._idTokenTimeOfCreation; } } exports.SuccessfulAuthenticationResult = SuccessfulAuthenticationResult; //# sourceMappingURL=successful-authentication-result.class.js.map