<PackageReference Include="Relativity.Server.Testing.Framework.SDK" Version="10.3.0" />

Error

public class Error : Artifact
Represents the Relativity error object.
public string FullError { get; set; }

Gets or sets a detailed error message, such as a stack trace.

public string Message { get; set; }

Gets or sets a brief message summarizing the error.

public bool? SendNotification { get; set; }

Gets or sets a value indicating whether to send a notification message when an error occurs.

public string Server { get; set; }

Gets or sets the server where the error occurred.

public string Source { get; set; }

Gets or sets the component of the Relativity application where the error occurred, such as the web, or agent.

public string StepsToReproduce { get; set; }

Gets or sets the steps to recreate the error.

public DateTime Timestamp { get; set; }

Gets or sets the DateTime that the error was created.

public string URL { get; set; }

Gets or sets the URL at which the error occurred.

public NamedArtifact Workspace { get; set; }

Gets or sets the Workspace identifier associated with this error.

public Error()