<PackageReference Include="Relativity.Import.Models.SDK" Version="1.7.7" />

Relativity.Import.V1.Models.ImportProgress

public sealed class ImportProgress
Class for retrieving information about the progress of importing data source or sources for specific job.
public List<ProgressElement> DetailedProgress { get; set; }

Gets or sets a list of ProgressElements containing progress for subsequent stages of import.

public int ErroredRecords { get; set; }

Gets or sets the number of errored records.

public int ImportedRecords { get; set; }

Gets or sets the number of records imported with success.

public int TotalRecords { get; set; }

Gets or sets the total records read from data source(s).

public ImportProgress(int totalRecords, int importedRecords, int erroredRecords, List<ProgressElement> detailedProgress = null)

Initializes a new instance of the ImportProgress class.