Script.bundleIds
Property Description |
An array of bundle IDs for the bundles that include the currently executing script. When you use this property, consider the following:
|
Type |
string [] (read-only) |
Module |
|
Since |
2015.2 |
Syntax
The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/runtime Module Script Samples.
// Add additional code
...
var scriptObj = runtime.getCurrentScript();
var bundleArr = scriptObj.bundleIds;
...
// Add additional code