| 1 | <?php |
||
| 7 | class FileStats extends AbstractModel |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var int |
||
| 11 | */ |
||
| 12 | protected $bytesCompleted; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var int |
||
| 16 | */ |
||
| 17 | protected $priority; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var bool |
||
| 21 | */ |
||
| 22 | protected $wanted; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @return int |
||
| 26 | */ |
||
| 27 | public function getBytesCompleted() |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param int $bytesCompleted |
||
| 34 | */ |
||
| 35 | public function setBytesCompleted($bytesCompleted) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return int |
||
| 42 | */ |
||
| 43 | public function getPriority() |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @param int $priority |
||
| 50 | */ |
||
| 51 | public function setPriority($priority) |
||
| 55 | |||
| 56 | /** |
||
| 57 | * @return boolean |
||
| 58 | */ |
||
| 59 | public function isWanted() |
||
| 63 | |||
| 64 | /** |
||
| 65 | * @param boolean $wanted |
||
| 66 | */ |
||
| 67 | public function setWanted($wanted) |
||
| 71 | |||
| 72 | /** |
||
| 73 | * {@inheritDoc} |
||
| 74 | */ |
||
| 75 | public static function getMapping() |
||
| 83 | } |