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

Relativity.Import.V1.Models.ImportDetails

public sealed class ImportDetails
Class for retrieving information about an import job.
public string ApplicationName { get; }

Gets application name.

public int CreatedBy { get; }

Gets an ArtifactID of a user who created the import job.

public DateTime CreatedOn { get; }

Gets the job creation date.

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

Gets or sets collection of errors connected with import job.

public bool IsFinished { get; }

Gets a value indicating whether the job is finished.

public int LastModifiedBy { get; }

Gets an ArtifactID of a last user who modified the import job.

public DateTime LastModifiedOn { get; }

Gets the date of last modification.

public ImportState State { get; }

Gets import job state.

public ImportDetails(ImportState state, string applicationName, int createdBy, DateTime createdOn, int lastModifiedBy, DateTime lastModifiedOn)

Initializes a new instance of the ImportDetails class.