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

kCura.Relativity.DataReaderClient.FullStatus

public class FullStatus
Represents a status message provided to an OnProcessProgress event.
namespace kCura.Relativity.DataReaderClient { public class FullStatus { public DateTime StartTime { get; set; } public DateTime EndTime { get; set; } public Guid ProcessID { get; set; } public long TotalRecords { get; set; } public long TotalRecordsProcessed { get; set; } public long TotalRecordsProcessedWithWarnings { get; set; } public long TotalRecordsProcessedWithErrors { get; set; } public string TotalRecordsDisplay { get; set; } public string TotalRecordsProcessedDisplay { get; set; } public double MetadataThroughput { get; set; } public double FilesThroughput { get; set; } public IDictionary StatusSuffixEntries { get; } public FullStatus(long totRecs, long totRecsProc, long totRecsProcWarn, long totRecsProcErr, DateTime sTime, DateTime eTime, string totRecsDisplay, string totRecsProcDisplay, double metadataThroughput, double filesThroughput, Guid theProcessID, IDictionary statusSuffixEntries); } }