Models a dependency for a Script.
Default constructor
public Void Dependency()
Initializes a new instance of ScriptDependency.
public Void Dependency(scriptId, optional)
Name | Type | Summary |
---|---|---|
scriptId | String | The Id of the script that a script depends upon. |
optional | Boolean | Whether the dependency is optional or not. Defaults to false. |
Initializes a new instance of ScriptDependency from source.
public Void Dependency(source)
Name | Type | Summary |
---|---|---|
source | Dependency | A Dependency. |
Whether the dependency is optional or not. Defaults to false.
public Boolean Optional { get; set; }
The Id of the script that a script depends upon.
public String ScriptId { get; set; }
In this document