RunLogFragment
Structure containing information about (part or all) of the run log
| 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 |
| version | string | Return the run log version. Note: the run log version does not change when new lines are added to the run log, only when an execution restarts & the run log is reset. |
Example
{
"id" : "...",
"version" : "...",
"firstLineNum" : 12345,
"lines" : [ "...", "..." ]
}
