1 | <?php |
||
5 | class InlineQueryResultLocation extends InlineQueryResultAbstract |
||
6 | { |
||
7 | const ENTITY_TYPE = 'InlineQueryResultLocation'; |
||
8 | |||
9 | protected $latitude; |
||
10 | |||
11 | protected $longitude; |
||
12 | |||
13 | /** |
||
14 | * @return mixed |
||
15 | */ |
||
16 | public function getLatitude() |
||
20 | |||
21 | /** |
||
22 | * @param mixed $latitude |
||
23 | * |
||
24 | * @return $this |
||
25 | */ |
||
26 | public function setLatitude($latitude) |
||
32 | |||
33 | /** |
||
34 | * @return mixed |
||
35 | */ |
||
36 | public function getLongitude() |
||
40 | |||
41 | /** |
||
42 | * @param mixed $longitude |
||
43 | * |
||
44 | * @return $this |
||
45 | */ |
||
46 | public function setLongitude($longitude) |
||
52 | } |
||
53 |