1 | <?php |
||
10 | class Stats implements ModelInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var integer |
||
14 | */ |
||
15 | protected $downloadedBytes; |
||
16 | |||
17 | /** |
||
18 | * @var integer |
||
19 | */ |
||
20 | protected $filesAdded; |
||
21 | |||
22 | /** |
||
23 | * @var integer |
||
24 | */ |
||
25 | protected $secondsActive; |
||
26 | |||
27 | /** |
||
28 | * @var integer |
||
29 | */ |
||
30 | protected $sessionCount; |
||
31 | |||
32 | /** |
||
33 | * @var integer |
||
34 | */ |
||
35 | protected $uploadedBytes; |
||
36 | |||
37 | /** |
||
38 | * Gets the value of downloadedBytes. |
||
39 | * |
||
40 | * @return integer |
||
41 | */ |
||
42 | public function getDownloadedBytes() |
||
46 | |||
47 | /** |
||
48 | * Sets the value of downloadedBytes. |
||
49 | * |
||
50 | * @param integer $downloadedBytes the downloaded bytes |
||
51 | */ |
||
52 | public function setDownloadedBytes($downloadedBytes) |
||
56 | |||
57 | /** |
||
58 | * Gets the value of filesAdded. |
||
59 | * |
||
60 | * @return integer |
||
61 | */ |
||
62 | public function getFilesAdded() |
||
66 | |||
67 | /** |
||
68 | * Sets the value of filesAdded. |
||
69 | * |
||
70 | * @param integer $filesAdded the files added |
||
71 | */ |
||
72 | public function setFilesAdded($filesAdded) |
||
76 | |||
77 | /** |
||
78 | * Gets the value of secondsActive. |
||
79 | * |
||
80 | * @return integer |
||
81 | */ |
||
82 | public function getSecondsActive() |
||
86 | |||
87 | /** |
||
88 | * Sets the value of secondsActive. |
||
89 | * |
||
90 | * @param integer $secondsActive the seconds active |
||
91 | */ |
||
92 | public function setSecondsActive($secondsActive) |
||
96 | |||
97 | /** |
||
98 | * Gets the value of sessionCount. |
||
99 | * |
||
100 | * @return integer |
||
101 | */ |
||
102 | public function getSessionCount() |
||
106 | |||
107 | /** |
||
108 | * Sets the value of sessionCount. |
||
109 | * |
||
110 | * @param integer $sessionCount the session count |
||
111 | */ |
||
112 | public function setSessionCount($sessionCount) |
||
116 | |||
117 | /** |
||
118 | * Gets the value of uploadedBytes. |
||
119 | * |
||
120 | * @return integer |
||
121 | */ |
||
122 | public function getUploadedBytes() |
||
126 | |||
127 | /** |
||
128 | * Sets the value of uploadedBytes. |
||
129 | * |
||
130 | * @param integer $uploadedBytes the uploaded bytes |
||
131 | */ |
||
132 | public function setUploadedBytes($uploadedBytes) |
||
136 | |||
137 | /** |
||
138 | * {@inheritDoc} |
||
139 | */ |
||
140 | public static function getMapping() |
||
150 | } |
||
151 |