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

Result<T>

public class Result<T>
A ReadResult represents the outcome of an individual Read operation on a single Artifact.
public T Artifact { get; set; }

Provides the Artifact.

public string Message { get; set; }

When an error occurs, this property will provide more information about the failure.

public bool Success { get; set; }

Gets a value indicating whether the individual operation was a success.

public List<string> WarningMessages { get; set; }

When warnings occur, this property will provide more information about the warnings.

public Result()

Result Constructor.