UNPKG

@studyportals/sp-hs-misc

Version:

Miscellaneous code used in HouseStark's projects

30 lines 1 kB
/** * @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; } } export { SuccessfulAuthenticationResult }; //# sourceMappingURL=successful-authentication-result.class.js.map