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

ScriptResponse

Represents the results of a read operation on a script.
public List<Action> Actions { get; set; }

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

public string Category { get; set; }

Gets a string used to define the script type.

Gets the Artifact ID and name of the user who created the script.

public DateTime CreatedOn { get; set; }

Gets the date and time when the object type was added to Relativity.

public string Description { get; set; }

Gets the description of the script.

public ScriptDisplayType DisplayType { get; set; }

Gets or sets the display type of the script.

public bool DisplayWarning { get; set; }

Gets or sets whether or not the UI should display a warning before running the script.

public bool IsLinkedScript { get; set; }

Gets whether the script is imported from the admin script library.

public string Key { get; set; }

Gets the value used to lock a script within Relativity. A locked script cannot be modified

Gets the Artifact ID and name of the user who recently updated the script.

public DateTime LastModifiedOn { get; set; }

Gets the date and time when the object type was most recently updated.

public Meta Meta { get; set; }

Gets a list of unsupported and read-only properties on the current script.

Gets or sets a list of identifiers of associated Relativity Applications for the script.

public string ReportGroupURL { get; set; }

Gets a custom page URL that can be used to create new tabs for displaying scripts of the same category.

public string ScriptBody { get; set; }

Gets or sets the body of the script that will be executed. It must include the name property.

public string Version { get; set; }

Gets the internal script version.

public ScriptResponse()