1 | <?php |
||
4 | class ChatChannelLink { |
||
5 | |||
6 | /** |
||
7 | * @var string |
||
8 | */ |
||
9 | protected $emoticons; |
||
10 | |||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $badges; |
||
15 | |||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $self; |
||
20 | |||
21 | /** |
||
22 | * @return string |
||
23 | */ |
||
24 | public function getEmoticons() |
||
28 | |||
29 | /** |
||
30 | * @param string $emoticons |
||
31 | */ |
||
32 | public function setEmoticons($emoticons) |
||
36 | |||
37 | /** |
||
38 | * @return string |
||
39 | */ |
||
40 | public function getBadges() |
||
44 | |||
45 | /** |
||
46 | * @param string $badges |
||
47 | */ |
||
48 | public function setBadges($badges) |
||
52 | |||
53 | /** |
||
54 | * @return string |
||
55 | */ |
||
56 | public function getSelf() |
||
60 | |||
61 | /** |
||
62 | * @param string $self |
||
63 | */ |
||
64 | public function setSelf($self) |
||
68 | |||
69 | } |