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

ActionJob

public class ActionJob
Represents a script action job.
public List<HttpAction> 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 a value indicating whether html tags should be rendered by the browser.

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

Gets or sets the column information when the ReturnType is Table.

public string ErrorMessage { get; set; }

Gets or sets 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; }

Gets or sets the name of the action.

public ActionReturnType ReturnType { get; set; }

Gets or sets the return type of the action.

public int? RowsAffected { get; set; }

Gets or sets the number of rows affected by the completed action when the ReturnType is Status.

public RunJobStatus Status { get; set; }

Gets or sets the current status of the job.

public ActionJob()