<PackageReference Include="Relativity.Identity.SDK" Version="2.6.2" />

Artifact

Represents a Relativity artifact.
public int ArtifactTypeID { get; set; }

The identifier for the type of item that the artifact represents.

public int CreatedBy { get; set; }

The user who created the artifact.

public DateTime CreatedOn { get; set; }

The DateTime in UTC when the artifact was created.

public bool DeleteFlag { get; set; }

Marks if the artifact has been flagged for deletion.

public string Keywords { get; set; }

User defined keywords.

public int LastModifiedBy { get; set; }

The user who last modified the artifact.

public DateTime LastModifiedOn { get; set; }

The DateTime in UTC when the artifact was last modified.

public string Notes { get; set; }

User defined notes.

public int? ParentArtifactID { get; set; }

The identifier for the parent of the artifact.

public string TextIdentifier { get; set; }

The text identifier for the artifact.

public Artifact()