<PackageReference Include="Relativity.Server.Services.Interfaces.SDK" Version="5000.0.2" />

ActionJob

public class ActionJob
Represents a script action job.
public List<Action> Actions { get; set; }

Gets or sets a list of RESTful operations that a user has permissions to perform on the script action job.

public bool AllowHtmlTagsInOutput { get; set; }

Gets or sets if html tags should be rendered by the browser.

public List<ActionColumn> Columns { get; set; }

The column information when the ReturnType is Table.

public string ErrorMessage { get; set; }

The error message when an error.

public Meta Meta { get; set; }

Gets or sets a list of unsupported and read-only properties on the script action job.

public string Name { get; set; }

The name of the action.

public ActionReturnType ReturnType { get; set; }

The return type of the action.

public int? RowsAffected { get; set; }

The number of rows affected by the completed action when the ReturnType is Status.

public ActionJobStatus Status { get; set; }

The current status of the job.

public ActionJob()