Show / Hide Table of Contents

Class RunJob

Represents a script run job.

Inheritance
System.Object
RunJob
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Relativity.Testing.Framework.Models
Assembly: Relativity.Testing.Framework.dll
Syntax
public class RunJob

Properties

| Improve this Doc View Source

ActionJobs

Gets or sets the script actions that are associated with this run job.

Declaration
public List<ActionJob> ActionJobs { get; set; }
Property Value
Type Description
System.Collections.Generic.List<ActionJob>
| Improve this Doc View Source

Actions

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

Declaration
public List<HttpAction> Actions { get; set; }
Property Value
Type Description
System.Collections.Generic.List<HttpAction>
| Improve this Doc View Source

ErrorMessage

Gets or sets the error message when a script run errors.

Declaration
public string ErrorMessage { get; set; }
Property Value
Type Description
System.String
Remarks

This error is only populated when there is an error with the script run job. Action errors will listed with the associated ActionJob as part of the ActionJobs property.

| Improve this Doc View Source

Meta

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

Declaration
public Meta Meta { get; set; }
Property Value
Type Description
Meta
| Improve this Doc View Source

Status

Gets or sets the current status of the job.

Declaration
public RunJobStatus Status { get; set; }
Property Value
Type Description
RunJobStatus
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX