Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions N/runtime.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ export var processorCount: number;
export var queueCount: number;
/** Returns the version of NetSuite that the method is called in. For example, the runtime.version property in an account running NetSuite 2015.2 is 2015.2. */
export var version: string;
/** Returns the country of NetSuite that the method is called in. For example, the runtime.country property in an account running NetSuite 2015.2 is 2015.2. */
export var country: string;
/** Returns a runtime.Script that represents the currently executing script. */
export function getCurrentScript(): Script;
/** Returns a runtime.Session that represents the user session for the currently executing script. */
Expand Down