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
// The hour in 24 hour format. Ranges from 0 to 23.
95
97
optionalint32hour=2;
96
98
97
-
// The minute in 2 digits. Ranges from 00 to 59.
99
+
// The minute. Ranges from 0 to 59.
98
100
optionalint32minute=3;
99
101
100
102
// Date in the local timezone for the place.
@@ -378,6 +380,9 @@ message Place {
378
380
// A short, human-readable address for this place.
379
381
stringshort_formatted_address=51;
380
382
383
+
// The address in postal address format.
384
+
google.type.PostalAddresspostal_address=90;
385
+
381
386
// Repeated components for each locality level.
382
387
// Note the following facts about the address_components[] array:
383
388
// - The array of address components may contain more components than the
@@ -421,21 +426,30 @@ message Place {
421
426
// reviews can be returned.
422
427
repeatedReviewreviews=53;
423
428
424
-
// The regular hours of operation.
429
+
// The regular hours of operation. Note that if a place is always open (24
430
+
// hours), the `close` field will not be set. Clients can rely on always open
431
+
// (24 hours) being represented as an
432
+
// [open][google.maps.places.v1.Place.OpeningHours.Period.open] period
433
+
// containing [day][Point.day] with value `0`, [hour][Point.hour] with
434
+
// value `0`, and [minute][Point.minute] with value `0`.
425
435
OpeningHoursregular_opening_hours=21;
426
436
427
437
// Number of minutes this place's timezone is currently offset from UTC.
428
438
// This is expressed in minutes to support timezones that are offset by
429
439
// fractions of an hour, e.g. X hours and 15 minutes.
430
440
optionalint32utc_offset_minutes=22;
431
441
442
+
// IANA Time Zone Database time zone. For example "America/New_York".
443
+
google.type.TimeZonetime_zone=88;
444
+
432
445
// Information (including references) about photos of this place. A maximum of
433
446
// 10 photos can be returned.
434
447
repeatedPhotophotos=54;
435
448
436
449
// The place's address in adr microformat: http://microformats.org/wiki/adr.
0 commit comments