| 1 | <?php |
||
| 5 | class InlineQueryResultVenue extends InlineQueryResultAbstract |
||
| 6 | { |
||
| 7 | const ENTITY_TYPE = 'InlineQueryResultVenue'; |
||
| 8 | |||
| 9 | protected $latitude; |
||
| 10 | |||
| 11 | protected $longitude; |
||
| 12 | |||
| 13 | protected $address; |
||
| 14 | |||
| 15 | protected $foursquare_id; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @return mixed |
||
| 19 | */ |
||
| 20 | public function getLatitude() |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param mixed $latitude |
||
| 27 | * |
||
| 28 | * @return $this |
||
| 29 | */ |
||
| 30 | public function setLatitude($latitude) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return mixed |
||
| 39 | */ |
||
| 40 | public function getLongitude() |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @param mixed $longitude |
||
| 47 | * |
||
| 48 | * @return $this |
||
| 49 | */ |
||
| 50 | public function setLongitude($longitude) |
||
| 56 | |||
| 57 | /** |
||
| 58 | * @return mixed |
||
| 59 | */ |
||
| 60 | public function getAddress() |
||
| 64 | |||
| 65 | /** |
||
| 66 | * @param mixed $address |
||
| 67 | * |
||
| 68 | * @return $this |
||
| 69 | */ |
||
| 70 | public function setAddress($address) |
||
| 76 | |||
| 77 | /** |
||
| 78 | * @return mixed |
||
| 79 | */ |
||
| 80 | public function getFoursquareId() |
||
| 84 | |||
| 85 | /** |
||
| 86 | * @param mixed $foursquare_id |
||
| 87 | * |
||
| 88 | * @return $this |
||
| 89 | */ |
||
| 90 | public function setFoursquareId($foursquare_id) |
||
| 96 | } |
||
| 97 |