1 | <?php |
||
4 | class ChatChannelBadges |
||
5 | { |
||
6 | /** |
||
7 | * @var array |
||
8 | */ |
||
9 | protected $subscriber; |
||
10 | |||
11 | /** |
||
12 | * @var array |
||
13 | */ |
||
14 | protected $broadcaster; |
||
15 | |||
16 | /** |
||
17 | * @var array |
||
18 | */ |
||
19 | protected $global_mod; |
||
20 | |||
21 | /** |
||
22 | * @var array |
||
23 | */ |
||
24 | protected $staff; |
||
25 | |||
26 | /** |
||
27 | * @var array |
||
28 | */ |
||
29 | protected $turbo; |
||
30 | |||
31 | /** |
||
32 | * @var array |
||
33 | */ |
||
34 | protected $admin; |
||
35 | |||
36 | /** |
||
37 | * @var array |
||
38 | */ |
||
39 | protected $mod; |
||
40 | |||
41 | /** |
||
42 | * @return array |
||
43 | */ |
||
44 | public function getList() |
||
55 | /** |
||
56 | * @return array |
||
57 | */ |
||
58 | public function getSubscriber() |
||
62 | |||
63 | /** |
||
64 | * @param array $subscriber |
||
65 | */ |
||
66 | public function setSubscriber($subscriber) |
||
70 | |||
71 | /** |
||
72 | * @return array |
||
73 | */ |
||
74 | public function getBroadcaster() |
||
78 | |||
79 | /** |
||
80 | * @param array $broadcaster |
||
81 | */ |
||
82 | public function setBroadcaster($broadcaster) |
||
86 | |||
87 | /** |
||
88 | * @return array |
||
89 | */ |
||
90 | public function getGlobalMod() |
||
94 | |||
95 | /** |
||
96 | * @param array $global_mod |
||
97 | */ |
||
98 | public function setGlobalMod($global_mod) |
||
102 | |||
103 | /** |
||
104 | * @return array |
||
105 | */ |
||
106 | public function getStaff() |
||
110 | |||
111 | /** |
||
112 | * @param array $staff |
||
113 | */ |
||
114 | public function setStaff($staff) |
||
118 | |||
119 | /** |
||
120 | * @return array |
||
121 | */ |
||
122 | public function getTurbo() |
||
126 | |||
127 | /** |
||
128 | * @param array $turbo |
||
129 | */ |
||
130 | public function setTurbo($turbo) |
||
134 | |||
135 | /** |
||
136 | * @return array |
||
137 | */ |
||
138 | public function getAdmin() |
||
142 | |||
143 | /** |
||
144 | * @param array $admin |
||
145 | */ |
||
146 | public function setAdmin($admin) |
||
150 | |||
151 | /** |
||
152 | * @return array |
||
153 | */ |
||
154 | public function getMod() |
||
158 | |||
159 | /** |
||
160 | * @param array $mod |
||
161 | */ |
||
162 | public function setMod($mod) |
||
166 | |||
167 | } |