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

Relativity.Import.V1.Models.Errors.ImportErrors

public sealed class ImportErrors
ImportErrors.
public Guid DataSourceID { get; set; }

Gets or sets Data Source Id.

public List<ImportError> Errors { get; set; }

Gets or sets collection of errors.

public bool HasMoreRecords { get; }

Gets a value indicating whether there is more records for a given Data Source.

public int NumberOfRecords { get; set; }

Gets or sets the number of item errors in the Errors collection.

public int NumberOfSkippedRecords { get; set; }

Gets or sets the number of skipped item errors. Item errors are ordered by Line Number.

public int TotalCount { get; set; }

Gets or sets the number of all item errors for a given DataSourceID.

public ImportErrors(Guid dataSourceId, List<ImportError> errors, int totalCount, int numberOfSkippedRecords, int numberOfRecords)

Initializes a new instance of the ImportErrors class.