@@ -36,6 +36,9 @@ class Venue extends BaseType implements TypeInterface
36
36
'title ' => true ,
37
37
'address ' => true ,
38
38
'foursquare_id ' => true ,
39
+ 'foursquare_type ' => true ,
40
+ 'google_place_id ' => true ,
41
+ 'google_place_type ' => true ,
39
42
];
40
43
41
44
/**
@@ -66,6 +69,27 @@ class Venue extends BaseType implements TypeInterface
66
69
*/
67
70
protected $ foursquareId ;
68
71
72
+ /**
73
+ * Optional. Foursquare type of the venue. (For example, “arts_entertainment/default”, “arts_entertainment/aquarium” or “food/icecream”.)
74
+ *
75
+ * @var string
76
+ */
77
+ protected $ foursquareType ;
78
+
79
+ /**
80
+ * Optional. Google Places identifier of the venue
81
+ *
82
+ * @var string
83
+ */
84
+ protected $ googlePlaceId ;
85
+
86
+ /**
87
+ * Optional. Google Places type of the venue.
88
+ *
89
+ * @var string
90
+ */
91
+ protected $ googlePlaceType ;
92
+
69
93
/**
70
94
* @return Location
71
95
*/
@@ -129,4 +153,52 @@ public function setFoursquareId($foursquareId)
129
153
{
130
154
$ this ->foursquareId = $ foursquareId ;
131
155
}
156
+
157
+ /**
158
+ * @return string
159
+ */
160
+ public function getFoursquareType ()
161
+ {
162
+ return $ this ->foursquareType ;
163
+ }
164
+
165
+ /**
166
+ * @param string $foursquareType
167
+ */
168
+ public function setFoursquareType ($ foursquareType )
169
+ {
170
+ $ this ->foursquareType = $ foursquareType ;
171
+ }
172
+
173
+ /**
174
+ * @return string
175
+ */
176
+ public function getGooglePlaceId ()
177
+ {
178
+ return $ this ->googlePlaceId ;
179
+ }
180
+
181
+ /**
182
+ * @param string $googlePlaceId
183
+ */
184
+ public function setGooglePlaceId ($ googlePlaceId )
185
+ {
186
+ $ this ->googlePlaceId = $ googlePlaceId ;
187
+ }
188
+
189
+ /**
190
+ * @return string
191
+ */
192
+ public function getGooglePlaceType ()
193
+ {
194
+ return $ this ->googlePlaceType ;
195
+ }
196
+
197
+ /**
198
+ * @param string $googlePlaceType
199
+ */
200
+ public function setGooglePlaceType ($ googlePlaceType )
201
+ {
202
+ $ this ->googlePlaceType = $ googlePlaceType ;
203
+ }
132
204
}
0 commit comments