1 | <?php |
||
17 | class StarredItem extends AbstractModel |
||
18 | { |
||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | private $type; |
||
23 | |||
24 | /** |
||
25 | * @var File |
||
26 | */ |
||
27 | private $file; |
||
28 | |||
29 | /** |
||
30 | * @var string |
||
31 | */ |
||
32 | private $comment; |
||
33 | |||
34 | /** |
||
35 | * @return string |
||
36 | */ |
||
37 | public function getType() |
||
41 | |||
42 | /** |
||
43 | * @return File |
||
44 | */ |
||
45 | public function getFile() |
||
49 | |||
50 | /** |
||
51 | * @return string |
||
52 | */ |
||
53 | public function getComment() |
||
57 | } |
||
58 |