1 | <?php |
||
16 | class ChatLocation extends TelegramTypes |
||
17 | { |
||
18 | /** |
||
19 | * The location to which the supergroup is connected. Can't be a live location. |
||
20 | * @var Location |
||
21 | */ |
||
22 | public $location; |
||
23 | |||
24 | /** |
||
25 | * Location address; 1-64 characters, as defined by the chat owner |
||
26 | * @var string |
||
27 | */ |
||
28 | public $address = ''; |
||
29 | |||
30 | public function mapSubObjects(string $key, array $data): TelegramTypes |
||
38 | } |
||
39 |