msal
Version:
Microsoft Authentication Library for js
23 lines (19 loc) • 565 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;
}
}