1 | <?php |
||
16 | class ChosenInlineResult extends TelegramTypes |
||
17 | { |
||
18 | /** |
||
19 | * The unique identifier for the result that was chosen |
||
20 | * @var string |
||
21 | */ |
||
22 | public $result_id = ''; |
||
23 | |||
24 | /** |
||
25 | * The user that chose the result |
||
26 | * @var User |
||
27 | */ |
||
28 | public $from = null; |
||
29 | |||
30 | /** |
||
31 | * Text of the query |
||
32 | * @var string |
||
33 | */ |
||
34 | public $query = ''; |
||
35 | |||
36 | protected function mapSubObjects(): array |
||
42 | } |
||
43 |