Initializing help system before first use

RunLogFragment

Structure containing information about (part or all) of the run log

Properties
name data type description
firstLineNum number Return the number of the first run log line in this fragment. Run log lines are numbered starting from line 1.
id string Return the ID of the model execution
lines array of string Return the run log lines in this fragment
numAvailableLines number Return the total number of lines in this version of the run log
version string Return the run log version. The run log version changes only when an execution restarts and the run log is reset; it does not change when new lines are added to the run log.

Example

{
  "id" : "...",
  "version" : "...",
  "firstLineNum" : 12345,
  "numAvailableLines" : 12345,
  "lines" : [ "...", "..." ]
}