1 | <?php |
||
19 | class UsersGetPresencePayload extends AbstractPayload |
||
20 | { |
||
21 | /** |
||
22 | * @var string $user ID of the user |
||
23 | */ |
||
24 | private $user; |
||
25 | |||
26 | /** |
||
27 | * @param string $user ID of the user |
||
28 | */ |
||
29 | 1 | public function setUserId($user) |
|
33 | |||
34 | /** |
||
35 | * @return string ID of the user |
||
36 | */ |
||
37 | 1 | public function getUserId() |
|
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | 1 | public function getMethod() |
|
49 | } |
||
50 |