/**
  * Start an 'download link activity' query.
  *
  * @param Device $device
  * @return \Injic\LaravelStatcounter\LaravelStatcounter|static
  */
 public function downloadLink(Device $device = null)
 {
     if (is_null($device)) {
         $device = Device::ALL();
     }
     $this->initStats('download-link-activity');
     $this->params['de'] = $device->getValue();
     return $this;
 }