This repository was archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathEnums.cs
658 lines (511 loc) · 18.2 KB
/
Enums.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
using System;
using Foundation;
using ObjCRuntime;
namespace Google.Places {
[Native]
public enum AutocompleteBoundsMode : ulong {
Bias,
Restrict
}
[Native]
public enum PlacesAutocompleteTypeFilter : long {
NoFilter,
Geocode,
Address,
Establishment,
Region,
City
}
[Native]
public enum OpenNowStatus : long {
Yes,
No,
Unknown
}
[Native]
public enum DayOfWeek : ulong {
Sunday = 1,
Monday = 2,
Tuesday = 3,
Wednesday = 4,
Thursday = 5,
Friday = 6,
Saturday = 7
}
[Native]
public enum PlacesPriceLevel : long {
Unknown = -1,
Free = 0,
Cheap = 1,
Medium = 2,
High = 3,
Expensive = 4
}
[Native]
public enum PlaceOpenStatus : long {
Unknown,
Open,
Closed
}
[Native]
public enum PlacesBusinessStatus : long {
Unknown,
Operational,
ClosedTemporarily,
ClosedPermanently
}
[Flags]
[Native]
public enum PlaceField : ulong {
Name = 1 << 0,
PlaceId = 1 << 1,
[Obsolete ("Use PlaceId value instead. This will be removed in future verions.")]
PlaceID = PlaceId,
PlusCode = 1 << 2,
Coordinate = 1 << 3,
OpeningHours = 1 << 4,
PhoneNumber = 1 << 5,
FormattedAddress = 1 << 6,
Rating = 1 << 7,
PriceLevel = 1 << 8,
Types = 1 << 9,
Website = 1 << 10,
Viewport = 1 << 11,
AddressComponents = 1 << 12,
Photos = 1 << 13,
UserRatingsTotal = 1 << 14,
UtcOffsetMinutes = 1 << 15,
BusinessStatus = 1 << 16,
IconImageUrl = 1 << 17,
IconBackgroundColor = 1 << 18,
All = ulong.MaxValue
}
[Native]
public enum PlacesErrorCode : long {
NetworkError = -1,
ServerError = -2,
InternalError = -3,
KeyInvalid = -4,
KeyExpired = -5,
UsageLimitExceeded = -6,
RateLimitExceeded = -7,
DeviceRateLimitExceeded = -8,
AccessNotConfigured = -9,
IncorrectBundleIdentifier = -10,
LocationError = -11,
InvalidRequest = -12
}
public enum PlaceType {
// extern NSString *const kGMSPlaceTypeAccounting;
[Field ("kGMSPlaceTypeAccounting", "__Internal")]
Accounting,
// extern NSString *const kGMSPlaceTypeAirport;
[Field ("kGMSPlaceTypeAirport", "__Internal")]
Airport,
// extern NSString *const kGMSPlaceTypeAmusementPark;
[Field ("kGMSPlaceTypeAmusementPark", "__Internal")]
AmusementPark,
// extern NSString *const kGMSPlaceTypeAquarium;
[Field ("kGMSPlaceTypeAquarium", "__Internal")]
Aquarium,
// extern NSString *const kGMSPlaceTypeArtGallery;
[Field ("kGMSPlaceTypeArtGallery", "__Internal")]
ArtGallery,
// extern NSString *const kGMSPlaceTypeAtm;
[Field ("kGMSPlaceTypeAtm", "__Internal")]
Atm,
// extern NSString *const kGMSPlaceTypeBakery;
[Field ("kGMSPlaceTypeBakery", "__Internal")]
Bakery,
// extern NSString *const kGMSPlaceTypeBank;
[Field ("kGMSPlaceTypeBank", "__Internal")]
Bank,
// extern NSString *const kGMSPlaceTypeBar;
[Field ("kGMSPlaceTypeBar", "__Internal")]
Bar,
// extern NSString *const kGMSPlaceTypeBeautySalon;
[Field ("kGMSPlaceTypeBeautySalon", "__Internal")]
BeautySalon,
// extern NSString *const kGMSPlaceTypeBicycleStore;
[Field ("kGMSPlaceTypeBicycleStore", "__Internal")]
BicycleStore,
// extern NSString *const kGMSPlaceTypeBookStore;
[Field ("kGMSPlaceTypeBookStore", "__Internal")]
BookStore,
// extern NSString *const kGMSPlaceTypeBowlingAlley;
[Field ("kGMSPlaceTypeBowlingAlley", "__Internal")]
BowlingAlley,
// extern NSString *const kGMSPlaceTypeBusStation;
[Field ("kGMSPlaceTypeBusStation", "__Internal")]
BusStation,
// extern NSString *const kGMSPlaceTypeCafe;
[Field ("kGMSPlaceTypeCafe", "__Internal")]
Cafe,
// extern NSString *const kGMSPlaceTypeCampground;
[Field ("kGMSPlaceTypeCampground", "__Internal")]
Campground,
// extern NSString *const kGMSPlaceTypeCarDealer;
[Field ("kGMSPlaceTypeCarDealer", "__Internal")]
CarDealer,
// extern NSString *const kGMSPlaceTypeCarRental;
[Field ("kGMSPlaceTypeCarRental", "__Internal")]
CarRental,
// extern NSString *const kGMSPlaceTypeCarRepair;
[Field ("kGMSPlaceTypeCarRepair", "__Internal")]
CarRepair,
// extern NSString *const kGMSPlaceTypeCarWash;
[Field ("kGMSPlaceTypeCarWash", "__Internal")]
CarWash,
// extern NSString *const kGMSPlaceTypeCasino;
[Field ("kGMSPlaceTypeCasino", "__Internal")]
Casino,
// extern NSString *const kGMSPlaceTypeCemetery;
[Field ("kGMSPlaceTypeCemetery", "__Internal")]
Cemetery,
// extern NSString *const kGMSPlaceTypeChurch;
[Field ("kGMSPlaceTypeChurch", "__Internal")]
Church,
// extern NSString *const kGMSPlaceTypeCityHall;
[Field ("kGMSPlaceTypeCityHall", "__Internal")]
CityHall,
// extern NSString *const kGMSPlaceTypeClothingStore;
[Field ("kGMSPlaceTypeClothingStore", "__Internal")]
ClothingStore,
// extern NSString *const kGMSPlaceTypeConvenienceStore;
[Field ("kGMSPlaceTypeConvenienceStore", "__Internal")]
ConvenienceStore,
// extern NSString *const kGMSPlaceTypeCourthouse;
[Field ("kGMSPlaceTypeCourthouse", "__Internal")]
Courthouse,
// extern NSString *const kGMSPlaceTypeDentist;
[Field ("kGMSPlaceTypeDentist", "__Internal")]
Dentist,
// extern NSString *const kGMSPlaceTypeDepartmentStore;
[Field ("kGMSPlaceTypeDepartmentStore", "__Internal")]
DepartmentStore,
// extern NSString *const kGMSPlaceTypeDoctor;
[Field ("kGMSPlaceTypeDoctor", "__Internal")]
Doctor,
// extern NSString *const kGMSPlaceTypeDrugstore;
[Field ("kGMSPlaceTypeDrugstore", "__Internal")]
Drugstore,
// extern NSString *const kGMSPlaceTypeElectrician;
[Field ("kGMSPlaceTypeElectrician", "__Internal")]
Electrician,
// extern NSString *const kGMSPlaceTypeElectronicsStore;
[Field ("kGMSPlaceTypeElectronicsStore", "__Internal")]
ElectronicsStore,
// extern NSString *const kGMSPlaceTypeEmbassy;
[Field ("kGMSPlaceTypeEmbassy", "__Internal")]
Embassy,
// extern NSString *const kGMSPlaceTypeFireStation;
[Field ("kGMSPlaceTypeFireStation", "__Internal")]
FireStation,
// extern NSString *const kGMSPlaceTypeFlorist;
[Field ("kGMSPlaceTypeFlorist", "__Internal")]
Florist,
// extern NSString *const kGMSPlaceTypeFuneralHome;
[Field ("kGMSPlaceTypeFuneralHome", "__Internal")]
FuneralHome,
// extern NSString *const kGMSPlaceTypeFurnitureStore;
[Field ("kGMSPlaceTypeFurnitureStore", "__Internal")]
FurnitureStore,
// extern NSString *const kGMSPlaceTypeGasStation;
[Field ("kGMSPlaceTypeGasStation", "__Internal")]
GasStation,
// extern NSString *const kGMSPlaceTypeGroceryOrSupermarket;
[Field ("kGMSPlaceTypeGroceryOrSupermarket", "__Internal")]
GroceryOrSupermarket,
// extern NSString *const kGMSPlaceTypeGym;
[Field ("kGMSPlaceTypeGym", "__Internal")]
Gym,
// extern NSString *const kGMSPlaceTypeHairCare;
[Field ("kGMSPlaceTypeHairCare", "__Internal")]
HairCare,
// extern NSString *const kGMSPlaceTypeHardwareStore;
[Field ("kGMSPlaceTypeHardwareStore", "__Internal")]
HardwareStore,
// extern NSString *const kGMSPlaceTypeHinduTemple;
[Field ("kGMSPlaceTypeHinduTemple", "__Internal")]
HinduTemple,
// extern NSString *const kGMSPlaceTypeHomeGoodsStore;
[Field ("kGMSPlaceTypeHomeGoodsStore", "__Internal")]
HomeGoodsStore,
// extern NSString *const kGMSPlaceTypeHospital;
[Field ("kGMSPlaceTypeHospital", "__Internal")]
Hospital,
// extern NSString *const kGMSPlaceTypeInsuranceAgency;
[Field ("kGMSPlaceTypeInsuranceAgency", "__Internal")]
InsuranceAgency,
// extern NSString *const kGMSPlaceTypeJewelryStore;
[Field ("kGMSPlaceTypeJewelryStore", "__Internal")]
JewelryStore,
// extern NSString *const kGMSPlaceTypeLaundry;
[Field ("kGMSPlaceTypeLaundry", "__Internal")]
Laundry,
// extern NSString *const kGMSPlaceTypeLawyer;
[Field ("kGMSPlaceTypeLawyer", "__Internal")]
Lawyer,
// extern NSString *const kGMSPlaceTypeLibrary;
[Field ("kGMSPlaceTypeLibrary", "__Internal")]
Library,
// extern NSString *const kGMSPlaceTypeLightRailStation;
[Field ("kGMSPlaceTypeLightRailStation", "__Internal")]
LightRailStation,
// extern NSString *const kGMSPlaceTypeLiquorStore;
[Field ("kGMSPlaceTypeLiquorStore", "__Internal")]
LiquorStore,
// extern NSString *const kGMSPlaceTypeLocalGovernmentOffice;
[Field ("kGMSPlaceTypeLocalGovernmentOffice", "__Internal")]
LocalGovernmentOffice,
// extern NSString *const kGMSPlaceTypeLocksmith;
[Field ("kGMSPlaceTypeLocksmith", "__Internal")]
Locksmith,
// extern NSString *const kGMSPlaceTypeLodging;
[Field ("kGMSPlaceTypeLodging", "__Internal")]
Lodging,
// extern NSString *const kGMSPlaceTypeMealDelivery;
[Field ("kGMSPlaceTypeMealDelivery", "__Internal")]
MealDelivery,
// extern NSString *const kGMSPlaceTypeMealTakeaway;
[Field ("kGMSPlaceTypeMealTakeaway", "__Internal")]
MealTakeaway,
// extern NSString *const kGMSPlaceTypeMosque;
[Field ("kGMSPlaceTypeMosque", "__Internal")]
Mosque,
// extern NSString *const kGMSPlaceTypeMovieRental;
[Field ("kGMSPlaceTypeMovieRental", "__Internal")]
MovieRental,
// extern NSString *const kGMSPlaceTypeMovieTheater;
[Field ("kGMSPlaceTypeMovieTheater", "__Internal")]
MovieTheater,
// extern NSString *const kGMSPlaceTypeMovingCompany;
[Field ("kGMSPlaceTypeMovingCompany", "__Internal")]
MovingCompany,
// extern NSString *const kGMSPlaceTypeMuseum;
[Field ("kGMSPlaceTypeMuseum", "__Internal")]
Museum,
// extern NSString *const kGMSPlaceTypeNightClub;
[Field ("kGMSPlaceTypeNightClub", "__Internal")]
NightClub,
// extern NSString *const kGMSPlaceTypePainter;
[Field ("kGMSPlaceTypePainter", "__Internal")]
Painter,
// extern NSString *const kGMSPlaceTypePark;
[Field ("kGMSPlaceTypePark", "__Internal")]
Park,
// extern NSString *const kGMSPlaceTypeParking;
[Field ("kGMSPlaceTypeParking", "__Internal")]
Parking,
// extern NSString *const kGMSPlaceTypePetStore;
[Field ("kGMSPlaceTypePetStore", "__Internal")]
PetStore,
// extern NSString *const kGMSPlaceTypePharmacy;
[Field ("kGMSPlaceTypePharmacy", "__Internal")]
Pharmacy,
// extern NSString *const kGMSPlaceTypePhysiotherapist;
[Field ("kGMSPlaceTypePhysiotherapist", "__Internal")]
Physiotherapist,
// extern NSString *const kGMSPlaceTypePlumber;
[Field ("kGMSPlaceTypePlumber", "__Internal")]
Plumber,
// extern NSString *const kGMSPlaceTypePrimarySchool;
[Field ("kGMSPlaceTypePrimarySchool", "__Internal")]
PrimarySchool,
// extern NSString *const kGMSPlaceTypePolice;
[Field ("kGMSPlaceTypePolice", "__Internal")]
Police,
// extern NSString *const kGMSPlaceTypePostOffice;
[Field ("kGMSPlaceTypePostOffice", "__Internal")]
PostOffice,
// extern NSString *const kGMSPlaceTypeRealEstateAgency;
[Field ("kGMSPlaceTypeRealEstateAgency", "__Internal")]
RealEstateAgency,
// extern NSString *const kGMSPlaceTypeRestaurant;
[Field ("kGMSPlaceTypeRestaurant", "__Internal")]
Restaurant,
// extern NSString *const kGMSPlaceTypeRoofingContractor;
[Field ("kGMSPlaceTypeRoofingContractor", "__Internal")]
RoofingContractor,
// extern NSString *const kGMSPlaceTypeRvPark;
[Field ("kGMSPlaceTypeRvPark", "__Internal")]
RvPark,
// extern NSString *const kGMSPlaceTypeSchool;
[Field ("kGMSPlaceTypeSchool", "__Internal")]
School,
// extern NSString *const kGMSPlaceTypeSecondarySchool;
[Field ("kGMSPlaceTypeSecondarySchool", "__Internal")]
SecondarySchool,
// extern NSString *const kGMSPlaceTypeShoeStore;
[Field ("kGMSPlaceTypeShoeStore", "__Internal")]
ShoeStore,
// extern NSString *const kGMSPlaceTypeShoppingMall;
[Field ("kGMSPlaceTypeShoppingMall", "__Internal")]
ShoppingMall,
// extern NSString *const kGMSPlaceTypeSpa;
[Field ("kGMSPlaceTypeSpa", "__Internal")]
Spa,
// extern NSString *const kGMSPlaceTypeStadium;
[Field ("kGMSPlaceTypeStadium", "__Internal")]
Stadium,
// extern NSString *const kGMSPlaceTypeStorage;
[Field ("kGMSPlaceTypeStorage", "__Internal")]
Storage,
// extern NSString *const kGMSPlaceTypeStore;
[Field ("kGMSPlaceTypeStore", "__Internal")]
Store,
// extern NSString *const kGMSPlaceTypeSubwayStation;
[Field ("kGMSPlaceTypeSubwayStation", "__Internal")]
SubwayStation,
// extern NSString *const kGMSPlaceTypeSupermarket;
[Field ("kGMSPlaceTypeSupermarket", "__Internal")]
Supermarket,
// extern NSString *const kGMSPlaceTypeSynagogue;
[Field ("kGMSPlaceTypeSynagogue", "__Internal")]
Synagogue,
// extern NSString *const kGMSPlaceTypeTaxiStand;
[Field ("kGMSPlaceTypeTaxiStand", "__Internal")]
TaxiStand,
// extern NSString *const kGMSPlaceTypeTrainStation;
[Field ("kGMSPlaceTypeTrainStation", "__Internal")]
TrainStation,
// extern NSString *const kGMSPlaceTypeTravelAgency;
[Field ("kGMSPlaceTypeTravelAgency", "__Internal")]
TravelAgency,
// extern NSString *const kGMSPlaceTypeTransitStation;
[Field ("kGMSPlaceTypeTransitStation", "__Internal")]
TransitStation,
// extern NSString *const kGMSPlaceTypeTouristAttraction;
[Field ("kGMSPlaceTypeTouristAttraction", "__Internal")]
TouristAttraction,
// extern NSString *const kGMSPlaceTypeUniversity;
[Field ("kGMSPlaceTypeUniversity", "__Internal")]
University,
// extern NSString *const kGMSPlaceTypeVeterinaryCare;
[Field ("kGMSPlaceTypeVeterinaryCare", "__Internal")]
VeterinaryCare,
// extern NSString *const kGMSPlaceTypeZoo;
[Field ("kGMSPlaceTypeZoo", "__Internal")]
Zoo,
// extern NSString *const kGMSPlaceTypeAdministrativeAreaLevel1;
[Field ("kGMSPlaceTypeAdministrativeAreaLevel1", "__Internal")]
AdministrativeAreaLevel1,
// extern NSString *const kGMSPlaceTypeAdministrativeAreaLevel2;
[Field ("kGMSPlaceTypeAdministrativeAreaLevel2", "__Internal")]
AdministrativeAreaLevel2,
// extern NSString *const kGMSPlaceTypeAdministrativeAreaLevel3;
[Field ("kGMSPlaceTypeAdministrativeAreaLevel3", "__Internal")]
AdministrativeAreaLevel3,
// extern NSString *const kGMSPlaceTypeAdministrativeAreaLevel4;
[Field ("kGMSPlaceTypeAdministrativeAreaLevel4", "__Internal")]
AdministrativeAreaLevel4,
// extern NSString *const kGMSPlaceTypeAdministrativeAreaLevel5;
[Field ("kGMSPlaceTypeAdministrativeAreaLevel5", "__Internal")]
AdministrativeAreaLevel5,
// extern NSString *const kGMSPlaceTypeColloquialArea;
[Field ("kGMSPlaceTypeColloquialArea", "__Internal")]
ColloquialArea,
// extern NSString *const kGMSPlaceTypeCountry;
[Field ("kGMSPlaceTypeCountry", "__Internal")]
Country,
// extern NSString *const kGMSPlaceTypeEstablishment;
[Field ("kGMSPlaceTypeEstablishment", "__Internal")]
Establishment,
// extern NSString *const kGMSPlaceTypeFinance;
[Field ("kGMSPlaceTypeFinance", "__Internal")]
Finance,
// extern NSString *const kGMSPlaceTypeFloor;
[Field ("kGMSPlaceTypeFloor", "__Internal")]
Floor,
// extern NSString *const kGMSPlaceTypeFood;
[Field ("kGMSPlaceTypeFood", "__Internal")]
Food,
// extern NSString *const kGMSPlaceTypeGeneralContractor;
[Field ("kGMSPlaceTypeGeneralContractor", "__Internal")]
GeneralContractor,
// extern NSString *const kGMSPlaceTypeGeocode;
[Field ("kGMSPlaceTypeGeocode", "__Internal")]
Geocode,
// extern NSString *const kGMSPlaceTypeHealth;
[Field ("kGMSPlaceTypeHealth", "__Internal")]
Health,
// extern NSString *const kGMSPlaceTypeIntersection;
[Field ("kGMSPlaceTypeIntersection", "__Internal")]
Intersection,
// extern NSString *const kGMSPlaceTypeLocality;
[Field ("kGMSPlaceTypeLocality", "__Internal")]
Locality,
// extern NSString *const kGMSPlaceTypeNaturalFeature;
[Field ("kGMSPlaceTypeNaturalFeature", "__Internal")]
NaturalFeature,
// extern NSString *const kGMSPlaceTypeNeighborhood;
[Field ("kGMSPlaceTypeNeighborhood", "__Internal")]
Neighborhood,
// extern NSString *const kGMSPlaceTypePlaceOfWorship;
[Field ("kGMSPlaceTypePlaceOfWorship", "__Internal")]
PlaceOfWorship,
// extern NSString *const kGMSPlaceTypePointOfInterest;
[Field ("kGMSPlaceTypePointOfInterest", "__Internal")]
PointOfInterest,
// extern NSString *const kGMSPlaceTypePolitical;
[Field ("kGMSPlaceTypePolitical", "__Internal")]
Political,
// extern NSString *const kGMSPlaceTypePostBox;
[Field ("kGMSPlaceTypePostBox", "__Internal")]
PostBox,
// extern NSString *const kGMSPlaceTypePostalCode;
[Field ("kGMSPlaceTypePostalCode", "__Internal")]
PostalCode,
// extern NSString *const kGMSPlaceTypePostalCodePrefix;
[Field ("kGMSPlaceTypePostalCodePrefix", "__Internal")]
PostalCodePrefix,
// extern NSString *const kGMSPlaceTypePostalCodeSuffix;
[Field ("kGMSPlaceTypePostalCodeSuffix", "__Internal")]
PostalCodeSuffix,
// extern NSString *const kGMSPlaceTypePostalTown;
[Field ("kGMSPlaceTypePostalTown", "__Internal")]
PostalTown,
// extern NSString *const kGMSPlaceTypePremise;
[Field ("kGMSPlaceTypePremise", "__Internal")]
Premise,
// extern NSString *const kGMSPlaceTypeRoom;
[Field ("kGMSPlaceTypeRoom", "__Internal")]
Room,
// extern NSString *const kGMSPlaceTypeRoute;
[Field ("kGMSPlaceTypeRoute", "__Internal")]
Route,
// extern NSString *const kGMSPlaceTypeStreetAddress;
[Field ("kGMSPlaceTypeStreetAddress", "__Internal")]
StreetAddress,
// extern NSString *const kGMSPlaceTypeStreetNumber;
[Field ("kGMSPlaceTypeStreetNumber", "__Internal")]
StreetNumber,
// extern NSString *const kGMSPlaceTypeSublocality;
[Field ("kGMSPlaceTypeSublocality", "__Internal")]
Sublocality,
// extern NSString *const kGMSPlaceTypeSublocalityLevel1;
[Field ("kGMSPlaceTypeSublocalityLevel1", "__Internal")]
SublocalityLevel1,
// extern NSString *const kGMSPlaceTypeSublocalityLevel2;
[Field ("kGMSPlaceTypeSublocalityLevel2", "__Internal")]
SublocalityLevel2,
// extern NSString *const kGMSPlaceTypeSublocalityLevel3;
[Field ("kGMSPlaceTypeSublocalityLevel3", "__Internal")]
SublocalityLevel3,
// extern NSString *const kGMSPlaceTypeSublocalityLevel4;
[Field ("kGMSPlaceTypeSublocalityLevel4", "__Internal")]
SublocalityLevel4,
// extern NSString *const kGMSPlaceTypeSublocalityLevel5;
[Field ("kGMSPlaceTypeSublocalityLevel5", "__Internal")]
SublocalityLevel5,
// extern NSString *const kGMSPlaceTypeSubpremise;
[Field ("kGMSPlaceTypeSubpremise", "__Internal")]
Subpremise,
// extern NSString *const kGMSPlaceTypeTownSquare;
[Field ("kGMSPlaceTypeTownSquare", "__Internal")]
TownSquare,
// extern NSString *const _Nonnull kGMSPlacesErrorDomain;
[Field ("kGMSPlacesErrorDomain", "__Internal")]
ErrorDomain,
}
}