1 | <?php |
||
5 | class InputVenueMessageContent extends InputMessageContent |
||
6 | { |
||
7 | const ENTITY_TYPE = 'InputVenueMessageContent'; |
||
8 | |||
9 | protected $latitude; |
||
10 | |||
11 | protected $longitude; |
||
12 | |||
13 | protected $title; |
||
14 | |||
15 | protected $address; |
||
16 | |||
17 | protected $foursquare_id; |
||
18 | |||
19 | protected $supportedProperties = [ |
||
20 | 'latitude' => true, |
||
21 | 'longitude' => true, |
||
22 | 'title' => true, |
||
23 | 'address' => true, |
||
24 | 'foursquare_id' => false |
||
25 | ]; |
||
26 | |||
27 | /** |
||
28 | * @return mixed |
||
29 | */ |
||
30 | public function getLongitude() |
||
34 | |||
35 | /** |
||
36 | * @param mixed $longitude |
||
37 | * |
||
38 | * @return $this |
||
39 | */ |
||
40 | public function setLongitude($longitude) |
||
46 | |||
47 | /** |
||
48 | * @return mixed |
||
49 | */ |
||
50 | public function getLatitude() |
||
54 | |||
55 | /** |
||
56 | * @param mixed $latitude |
||
57 | * |
||
58 | * @return $this |
||
59 | */ |
||
60 | public function setLatitude($latitude) |
||
66 | |||
67 | /** |
||
68 | * @return mixed |
||
69 | */ |
||
70 | public function getTitle() |
||
74 | |||
75 | /** |
||
76 | * @param mixed $title |
||
77 | * |
||
78 | * @return $this |
||
79 | */ |
||
80 | public function setTitle($title) |
||
86 | |||
87 | /** |
||
88 | * @return mixed |
||
89 | */ |
||
90 | public function getAddress() |
||
94 | |||
95 | /** |
||
96 | * @param mixed $address |
||
97 | * |
||
98 | * @return $this |
||
99 | */ |
||
100 | public function setAddress($address) |
||
106 | |||
107 | /** |
||
108 | * @return mixed |
||
109 | */ |
||
110 | public function getFoursquareId() |
||
114 | |||
115 | /** |
||
116 | * @param mixed $foursquare_id |
||
117 | * |
||
118 | * @return $this |
||
119 | */ |
||
120 | public function setFoursquareId($foursquare_id) |
||
126 | } |
||
127 |