Skip to content

Commit 48dbf2c

Browse files
1 parent 95d021d commit 48dbf2c

File tree

6 files changed

+457
-12
lines changed

6 files changed

+457
-12
lines changed

clients/google-api-services-places/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-places</artifactId>
25-
<version>v1-rev20250309-2.0.0</version>
25+
<version>v1-rev20250312-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-places:v1-rev20250309-2.0.0'
38+
implementation 'com.google.apis:google-api-services-places:v1-rev20250312-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-places/v1/2.0.0/com/google/api/services/places/v1/model/GoogleMapsPlacesV1Place.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,13 @@ public final class GoogleMapsPlacesV1Place extends com.google.api.client.json.Ge
336336
@com.google.api.client.util.Key
337337
private GoogleMapsPlacesV1PlacePlusCode plusCode;
338338

339+
/**
340+
* The address in postal address format.
341+
* The value may be {@code null}.
342+
*/
343+
@com.google.api.client.util.Key
344+
private GoogleTypePostalAddress postalAddress;
345+
339346
/**
340347
* Price level of the place.
341348
* The value may be {@code null}.
@@ -1287,6 +1294,23 @@ public GoogleMapsPlacesV1Place setPlusCode(GoogleMapsPlacesV1PlacePlusCode plusC
12871294
return this;
12881295
}
12891296

1297+
/**
1298+
* The address in postal address format.
1299+
* @return value or {@code null} for none
1300+
*/
1301+
public GoogleTypePostalAddress getPostalAddress() {
1302+
return postalAddress;
1303+
}
1304+
1305+
/**
1306+
* The address in postal address format.
1307+
* @param postalAddress postalAddress or {@code null} for none
1308+
*/
1309+
public GoogleMapsPlacesV1Place setPostalAddress(GoogleTypePostalAddress postalAddress) {
1310+
this.postalAddress = postalAddress;
1311+
return this;
1312+
}
1313+
12901314
/**
12911315
* Price level of the place.
12921316
* @return value or {@code null} for none

clients/google-api-services-places/v1/2.0.0/com/google/api/services/places/v1/model/GoogleMapsPlacesV1PlaceSubDestination.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
package com.google.api.services.places.v1.model;
1818

1919
/**
20-
* Sub destinations are specific places associated with a main place. These provide more specific
21-
* destinations for users who are searching for a large or complex place, like an airport, national
22-
* park, university, or stadium. For example, sub destinations at an airport might include
23-
* associated terminals and parking lots. Sub destinations return the place id and place resource
24-
* name, which can be used in subsequent Place Details (New) requests to fetch richer details,
25-
* including the sub destination's displayName and location.
20+
* Sub-destinations are specific places associated with a main place. These provide more specific
21+
* destinations for users who are searching inside a large or complex place, like an airport,
22+
* national park, university, or stadium. For example, sub-destinations at an airport might include
23+
* associated terminals and parking lots. Sub-destinations return the place ID and place resource
24+
* name, which can be used in subsequent Place Details (new) requests to fetch richer details,
25+
* including the sub-destination's display name and location.
2626
*
2727
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2828
* transmitted over HTTP when working with the Places API (New). For a detailed explanation see:

0 commit comments

Comments
 (0)