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

ProcessErrorReport

public sealed class ProcessErrorReport
Represents the show report event argument data. This class cannot be inherited.
using System.Data; namespace Relativity.DataExchange.Process { public sealed class ProcessErrorReport { public DataTable Report { get; set; } public bool MaxLengthExceeded { get; set; } public ProcessErrorReport() { Report = null; MaxLengthExceeded = false; } } }