id; } /** * @return string */ public function getType() { return $this->type; } /** * @return string */ public function getName() { return $this->name; } /** * @return string */ public function getStatus() { return $this->status; } /** * @param string $status */ public function setStatus($status) { $this->status = $status; } /** * @return int */ public function getSize() { return $this->size; } /** * @return int */ public function getQueuePos() { return $this->queue_pos; } /** * @param int $queue_pos */ public function setQueuePos($queue_pos) { $this->queue_pos = $queue_pos; } /** * @return string */ public function getIoPriority() { return $this->io_priority; } /** * @param string $io_priority */ public function setIoPriority($io_priority) { $this->io_priority = $io_priority; } /** * @return int */ public function getTxBytes() { return $this->tx_bytes; } /** * @return int */ public function getRxBytes() { return $this->rx_bytes; } /** * @return int */ public function getTxRate() { return $this->tx_rate; } /** * @return int */ public function getRxRate() { return $this->rx_rate; } /** * @return int */ public function getTxPct() { return $this->tx_pct; } /** * @return int */ public function getRxPct() { return $this->rx_pct; } /** * @return string */ public function getError() { return $this->error; } /** * @return int */ public function getCreatedTs() { return $this->created_ts; } /** * @return int */ public function getEta() { return $this->eta; } /** * @return string */ public function getDownloadDir() { return $this->download_dir; } /** * @return int */ public function getStopRatio() { return $this->stop_ratio; } /** * @return string */ public function getArchivePassword() { return $this->archive_password; } /** * @param string $archive_password */ public function setArchivePassword($archive_password) { $this->archive_password = $archive_password; } }