1 | <?php |
||
9 | final class ChannelMember extends Model |
||
10 | { |
||
11 | /** |
||
12 | * @return string|null |
||
13 | */ |
||
14 | 3 | public function getChannelId() |
|
18 | |||
19 | /** |
||
20 | * @return string|null |
||
21 | */ |
||
22 | 3 | public function getUserId() |
|
26 | |||
27 | /** |
||
28 | * @return string|null |
||
29 | */ |
||
30 | 3 | public function getRoles() |
|
34 | |||
35 | /** |
||
36 | * @return int|null |
||
37 | */ |
||
38 | 3 | public function getLastViewedAt() |
|
42 | |||
43 | /** |
||
44 | * @return int|null |
||
45 | */ |
||
46 | 3 | public function getMsgCount() |
|
50 | |||
51 | /** |
||
52 | * @return int|null |
||
53 | */ |
||
54 | 3 | public function getMentionCount() |
|
58 | |||
59 | /** |
||
60 | * @return string|null |
||
61 | */ |
||
62 | 3 | public function getNotifyProps() |
|
66 | |||
67 | /** |
||
68 | * @return int|null |
||
69 | */ |
||
70 | 3 | public function getLastUpdateAt() |
|
74 | |||
75 | /** |
||
76 | * @return array |
||
77 | */ |
||
78 | 3 | protected static function getFields() |
|
91 | } |
||
92 |