msal
Version:
Microsoft Authentication Library for js
21 lines (17 loc) • 528 B
text/typescript
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
/**
* @hidden
*/
export class AccessTokenValue {
accessToken: string;
idToken: string;
expiresIn: string;
homeAccountIdentifier: string;
constructor(accessToken: string, idToken: string, expiresIn: string, homeAccountIdentifier: string) {
this.accessToken = accessToken;
this.idToken = idToken;
this.expiresIn = expiresIn;
this.homeAccountIdentifier = homeAccountIdentifier;
}
}