JSON_PicturePollingTaskGet

JSON message about information of the captured picture polling analysis tasks

{
  "Tasks": [{
    "taskID": "",
/*required, string, task ID, the maximum size is 64 bytes*/
    "engine": 1,
/*required, int, engine ID which is used to distinguish models running in different engines*/
    "channel": [1, 2],
/*required, int, device channel No. which is the video analysis channel No. of the device*/
    "pollingTime": 60,
/*required, int, polling time, unit: second*/
    "status": 0,
/*required, int, status information: 0-not executed, 1-executing, 2-executing exception, 3-waiting, 4-the task and the model mismatch, 5-initializing*/
    "TimeRange": [{
/*optional, array of object, arming the task by day each week, by default there are 8 time periods each day*/
      "week": 1,
/*required, int, day of the week: 1 (Monday), 2 (Tuesday), ...*/
      "beginTime": "00:00",
/*required, string, start time in ISO 8601 time format*/
      "endTime": "24:00" 
/*required, string, end time in ISO 8601 time format*/
    }],
    "alarmTargetOverlay":true
/*optional, boolean, whether to enable overlaying alarm target frame*/
  }]
}