RMS SDK for C++  0.2.1
A client library for using Microsoft RMS from Linux.
IdToken.h
1 /*
2  * ======================================================================
3  * Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
4  * Licensed under the MIT License.
5  * See LICENSE.md in the project root for license information.
6  * ======================================================================
7 */
8 
9 #ifndef IDTOKEN
10 #define IDTOKEN
11 #include "types.h"
12 
13 namespace rmsauth {
14 struct IdToken
15 {
16  String mSubject;
17  String mTenantId;
18  String mUpn;
19  String mGivenName;
20  String mFamilyName;
21  String mEmail;
22  String mIdentityProvider;
23  String mObjectId;
24  int64_t mPasswordExpiration;
25  String mPasswordChangeUrl;
26 };
27 }; // namespace rmsauth
28 #endif // IDTOKEN
29 
Definition: AcquireTokenForClientHandler.h:14