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

Script

public class Script : NamedArtifact
Represents a script model.
public string Category { get; set; }

Gets or sets a string used to define the script type.

public string Description { get; set; }

Gets or sets the description of the script.

public bool IsLinkedScript { get; }

Gets a value indicating whether the script is imported from the admin script library.

public string Key { get; }

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

public List<Artifact> RelativityApplications { get; set; }

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

public string ReportGroupURL { get; }

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; }

Gets the internal script version.

public Script()