<PackageReference Include="Relativity.Server.Import.SDK" Version="2.9.2" />

JwtAuthToken

public sealed class JwtAuthToken
It represents Relativity token claims.
namespace Relativity.DataExchange { public sealed class JwtAuthToken { public string RelativityInstanceId { get; } public string RelativityUserId { get; } public JwtAuthToken(string relativityInstanceId, string relativityUserId) { RelativityInstanceId = relativityInstanceId; RelativityUserId = relativityUserId; } } }