You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Specifies if the place serves vegetarian food.
224
+
/// </summary>
225
+
[DataMember(Name="serves_vegetarian_food")]
226
+
publicboolServesVegetarianFood{get;set;}
227
+
228
+
/// <summary>
229
+
/// Specifies if the place serves wine.
230
+
/// </summary>
231
+
[DataMember(Name="serves_wine")]
232
+
publicboolServesWine{get;set;}
233
+
234
+
/// <summary>
235
+
/// Specifies if the business supports takeout.
236
+
/// </summary>
237
+
[DataMember(Name="takeout")]
238
+
publicboolTakeout{get;set;}
239
+
240
+
/// <summary>
241
+
/// Contains an array of feature types describing the given result.
242
+
/// </summary>
87
243
[DataMember(Name="types")]
88
-
publicstring[]Types{get;set;}
244
+
publicIEnumerable<string>Types{get;set;}
89
245
246
+
/// <summary>
247
+
/// Contains the URL of the official Google page for this place.
248
+
/// This will be the Google-owned page that contains the best available information about the place.
249
+
/// </summary>
90
250
[DataMember(Name="url")]
91
-
publicstringURL{get;set;}
251
+
publicstringUrl{get;set;}
92
252
253
+
/// <summary>
254
+
/// The total number of reviews, with or without text, for this place.
255
+
/// </summary>
256
+
[DataMember(Name="user_ratings_total")]
257
+
publicintUserRatingsTotal{get;set;}
258
+
259
+
/// <summary>
260
+
/// Contains the number of minutes this place’s current timezone is offset from UTC.
261
+
/// For example, for places in Sydney, Australia during daylight saving time this would be 660 (+11 hours from UTC),
262
+
/// and for places in California outside of daylight saving time this would be -480 (-8 hours from UTC).
263
+
/// </summary>
93
264
[DataMember(Name="utc_offset")]
94
-
publicstringUTCOffset{get;set;}
265
+
publicintUtcOffset{get;set;}
95
266
267
+
/// <summary>
268
+
/// For establishment (types:["establishment", ...]) results only, the vicinity field contains a simplified address for the place, including the street name, street number, and locality, but not the province/state, postal code, or country.
269
+
/// For all other results, the vicinity field contains the name of the narrowest political (types:["political", ...]) feature that is present in the address of the result.
270
+
/// </summary>
96
271
[DataMember(Name="vicinity")]
97
272
publicstringVicinity{get;set;}
98
273
274
+
/// <summary>
275
+
/// The authoritative website for this place, such as a business' homepage.
276
+
/// </summary>
99
277
[DataMember(Name="website")]
100
278
publicstringWebsite{get;set;}
101
279
102
-
[DataMember(Name="place_id")]
103
-
publicstringPlaceId{get;set;}
104
-
}
105
-
106
-
publicenumPriceLevel
107
-
{
108
-
Free=0,
109
-
Inexpensive=1,
110
-
Moderate=2,
111
-
Expensive=3,
112
-
VeryExpensive=4,
280
+
/// <summary>
281
+
/// Specifies if the place has an entrance that is wheelchair-accessible.
0 commit comments