MSALResult Class Reference

Inherits from NSObject
Declared in MSALResult.h

  accessToken

The Access Token requested.

@property (readonly) NSString *accessToken

Discussion

The Access Token requested.

Declared In

MSALResult.h

  expiresOn

The time that the access token returned in the Token property ceases to be valid.
This value is calculated based on current UTC time measured locally and the value expiresIn returned from the service
@property (readonly) NSDate *expiresOn

Discussion

The time that the access token returned in the Token property ceases to be valid.
This value is calculated based on current UTC time measured locally and the value expiresIn returned from the service

Declared In

MSALResult.h

  tenantId

An identifier for the tenant that the token was acquired from. This property will be nil if tenant information is not returned by the service.
@property (readonly) NSString *tenantId

Discussion

An identifier for the tenant that the token was acquired from. This property will be nil if tenant information is not returned by the service.

Declared In

MSALResult.h

  user

The user object that holds user information.
@property (readonly) MSALUser *user

Discussion

The user object that holds user information.

Declared In

MSALResult.h

  idToken

The raw id token if it's returned by the service or nil if no id token is returned.
@property (readonly) NSString *idToken

Discussion

The raw id token if it's returned by the service or nil if no id token is returned.

Declared In

MSALResult.h

  uniqueId

The unique id of the user.
@property (readonly) NSString *uniqueId

Discussion

The unique id of the user.

Declared In

MSALResult.h

  scopes

The scope values returned from the service.
@property (readonly) NSArray<NSString*> *scopes

Discussion

The scope values returned from the service.

Declared In

MSALResult.h