Skip to content

Commit a6e8124

Browse files
1 parent c4db727 commit a6e8124

File tree

4 files changed

+27
-15
lines changed

4 files changed

+27
-15
lines changed

clients/google-api-services-addressvalidation/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-addressvalidation</artifactId>
25-
<version>v1-rev20250318-2.0.0</version>
25+
<version>v1-rev20250323-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-addressvalidation:v1-rev20250318-2.0.0'
38+
implementation 'com.google.apis:google-api-services-addressvalidation:v1-rev20250323-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-addressvalidation/v1/2.0.0/com/google/api/services/addressvalidation/v1/model/GoogleMapsAddressvalidationV1Address.java

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,15 @@ public final class GoogleMapsAddressvalidationV1Address extends com.google.api.c
5555

5656
/**
5757
* The types of components that were expected to be present in a correctly formatted mailing
58-
* address but were not found in the input AND could not be inferred. Components of this type are
59-
* not present in `formatted_address`, `postal_address`, or `address_components`. An example might
60-
* be `['street_number', 'route']` for an input like "Boulder, Colorado, 80301, USA". The list of
58+
* address but were not found in the input AND could not be inferred. An example might be
59+
* `['street_number', 'route']` for an input like "Boulder, Colorado, 80301, USA". The list of
6160
* possible types can be found
6261
* [here](https://developers.google.com/maps/documentation/geocoding/requests-geocoding#Types).
62+
* **Note: you might see a missing component type when you think you've already supplied the
63+
* missing component.** For example, this can happen when the input address contains the building
64+
* name, but not the premise number. In the address "渋谷区渋谷3丁目 Shibuya Stream", the building name
65+
* "Shibuya Stream" has the component type `premise`, but the premise number is missing, so
66+
* `missing_component_types` will contain `premise`.
6367
* The value may be {@code null}.
6468
*/
6569
@com.google.api.client.util.Key
@@ -146,11 +150,15 @@ public GoogleMapsAddressvalidationV1Address setFormattedAddress(java.lang.String
146150

147151
/**
148152
* The types of components that were expected to be present in a correctly formatted mailing
149-
* address but were not found in the input AND could not be inferred. Components of this type are
150-
* not present in `formatted_address`, `postal_address`, or `address_components`. An example might
151-
* be `['street_number', 'route']` for an input like "Boulder, Colorado, 80301, USA". The list of
153+
* address but were not found in the input AND could not be inferred. An example might be
154+
* `['street_number', 'route']` for an input like "Boulder, Colorado, 80301, USA". The list of
152155
* possible types can be found
153156
* [here](https://developers.google.com/maps/documentation/geocoding/requests-geocoding#Types).
157+
* **Note: you might see a missing component type when you think you've already supplied the
158+
* missing component.** For example, this can happen when the input address contains the building
159+
* name, but not the premise number. In the address "渋谷区渋谷3丁目 Shibuya Stream", the building name
160+
* "Shibuya Stream" has the component type `premise`, but the premise number is missing, so
161+
* `missing_component_types` will contain `premise`.
154162
* @return value or {@code null} for none
155163
*/
156164
public java.util.List<java.lang.String> getMissingComponentTypes() {
@@ -159,11 +167,15 @@ public java.util.List<java.lang.String> getMissingComponentTypes() {
159167

160168
/**
161169
* The types of components that were expected to be present in a correctly formatted mailing
162-
* address but were not found in the input AND could not be inferred. Components of this type are
163-
* not present in `formatted_address`, `postal_address`, or `address_components`. An example might
164-
* be `['street_number', 'route']` for an input like "Boulder, Colorado, 80301, USA". The list of
170+
* address but were not found in the input AND could not be inferred. An example might be
171+
* `['street_number', 'route']` for an input like "Boulder, Colorado, 80301, USA". The list of
165172
* possible types can be found
166173
* [here](https://developers.google.com/maps/documentation/geocoding/requests-geocoding#Types).
174+
* **Note: you might see a missing component type when you think you've already supplied the
175+
* missing component.** For example, this can happen when the input address contains the building
176+
* name, but not the premise number. In the address "渋谷区渋谷3丁目 Shibuya Stream", the building name
177+
* "Shibuya Stream" has the component type `premise`, but the premise number is missing, so
178+
* `missing_component_types` will contain `premise`.
167179
* @param missingComponentTypes missingComponentTypes or {@code null} for none
168180
*/
169181
public GoogleMapsAddressvalidationV1Address setMissingComponentTypes(java.util.List<java.lang.String> missingComponentTypes) {

clients/google-api-services-addressvalidation/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-addressvalidation</artifactId>
11-
<version>v1-rev20250318-2.0.0</version>
12-
<name>Address Validation API v1-rev20250318-2.0.0</name>
11+
<version>v1-rev20250323-2.0.0</version>
12+
<name>Address Validation API v1-rev20250323-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-addressvalidation/v1/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-addressvalidation</artifactId>
25-
<version>v1-rev20250318-2.0.0</version>
25+
<version>v1-rev20250323-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-addressvalidation:v1-rev20250318-2.0.0'
38+
implementation 'com.google.apis:google-api-services-addressvalidation:v1-rev20250323-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)