| 1 | <?php |
||
| 19 | class UsersListPayload extends AbstractPayload |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var bool |
||
| 23 | */ |
||
| 24 | private $presence; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param bool $presence Whether to include presence data in the output |
||
| 28 | */ |
||
| 29 | public function setPresence($presence) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return bool Whether to include presence data in the output |
||
| 36 | */ |
||
| 37 | public function isPresence() |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @inheritdoc |
||
| 44 | */ |
||
| 45 | 1 | public function getMethod() |
|
| 49 | } |
||
| 50 |