1 | <?php |
||
17 | class ProximityAlertTriggered extends TelegramTypes |
||
18 | { |
||
19 | /** |
||
20 | * User that triggered the alert |
||
21 | * @var User |
||
22 | */ |
||
23 | public $traveler; |
||
24 | |||
25 | /** |
||
26 | * User that set the alert |
||
27 | * @var User |
||
28 | */ |
||
29 | public $watcher; |
||
30 | |||
31 | /** |
||
32 | * The distance between the users |
||
33 | * @var int |
||
34 | */ |
||
35 | public $distance; |
||
36 | |||
37 | protected function mapSubObjects(string $key, array $data): TelegramTypes |
||
47 | } |
||
48 |