Microsoft.Identity.Client.OAuth2.MsalTokenResponse
namespace Microsoft.Identity.Client.OAuth2
{
internal class MsalTokenResponse : OAuth2ResponseBase
{
public Dictionary<string, JsonElement> ExtensionData { get; set; }
public string TokenType { get; set; }
public string AccessToken { get; set; }
public string RefreshToken { get; set; }
public string Scope { get; set; }
public string ClientInfo { get; set; }
public string IdToken { get; set; }
public long ExpiresIn { get; set; }
public long ExtendedExpiresIn { get; set; }
public long? RefreshIn { get; set; }
public string FamilyId { get; set; }
public string SpaAuthCode { get; set; }
public string AuthorityUrl { get; set; }
public string TenantId { get; set; }
public string Upn { get; set; }
public string AccountUserId { get; set; }
public string WamAccountId { get; set; }
public TokenSource TokenSource { get; set; }
public HttpResponse HttpResponse { get; set; }
public MsalTokenResponse();
public IReadOnlyDictionary<string, string> CreateExtensionDataStringMap();
public void Log(ILoggerAdapter logger, LogLevel logLevel);
}
}