| 1 | <?php |
||
| 5 | class InputLocationMessageContent extends InputMessageContent |
||
| 6 | { |
||
| 7 | const ENTITY_TYPE = 'InputLocationMessageContent'; |
||
| 8 | |||
| 9 | protected $latitude; |
||
| 10 | |||
| 11 | protected $longitude; |
||
| 12 | |||
| 13 | protected $supportedProperties = [ |
||
| 14 | 'latitude' => true, |
||
| 15 | 'longitude' => true |
||
| 16 | ]; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return mixed |
||
| 20 | */ |
||
| 21 | public function getLongitude() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param mixed $longitude |
||
| 28 | * |
||
| 29 | * @return $this |
||
| 30 | */ |
||
| 31 | public function setLongitude($longitude) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return mixed |
||
| 40 | */ |
||
| 41 | public function getLatitude() |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @param mixed $latitude |
||
| 48 | * |
||
| 49 | * @return $this |
||
| 50 | */ |
||
| 51 | public function setLatitude($latitude) |
||
| 57 | } |
||
| 58 |