Skip to content

Commit 23187ca

Browse files
1 parent d9ce161 commit 23187ca

File tree

4 files changed

+27
-18
lines changed

4 files changed

+27
-18
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-rev20240703-2.0.0</version>
25+
<version>v1-rev20241106-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-rev20240703-2.0.0'
38+
implementation 'com.google.apis:google-api-services-addressvalidation:v1-rev20241106-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 & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@ public final class GoogleMapsAddressvalidationV1Address extends com.google.api.c
4343

4444
/**
4545
* The post-processed address, formatted as a single-line address following the address formatting
46-
* rules of the region where the address is located.
46+
* rules of the region where the address is located. Note: the format of this address may not
47+
* match the format of the address in the `postal_address` field. For example, the
48+
* `postal_address` will always represent the country as a 2 letter `region_code` (ex. "US" or
49+
* "CA"), whereas this field will use a longer form of the country name (ex. "USA or "Canada").
4750
* The value may be {@code null}.
4851
*/
4952
@com.google.api.client.util.Key
@@ -82,9 +85,9 @@ public final class GoogleMapsAddressvalidationV1Address extends com.google.api.c
8285

8386
/**
8487
* Any tokens in the input that could not be resolved. This might be an input that was not
85-
* recognized as a valid part of an address (for example in an input like "123235253253 Main St,
86-
* San Francisco, CA, 94105", the unresolved tokens may look like `["123235253253"]` since that
87-
* does not look like a valid street number.
88+
* recognized as a valid part of an address (for example in an input like "Parcel 0000123123 &
89+
* 0000456456 Str # Guthrie Center IA 50115 US", the unresolved tokens may look like `["Parcel",
90+
* "0000123123", "&", "0000456456"]`.
8891
* The value may be {@code null}.
8992
*/
9093
@com.google.api.client.util.Key
@@ -115,7 +118,10 @@ public GoogleMapsAddressvalidationV1Address setAddressComponents(java.util.List<
115118

116119
/**
117120
* The post-processed address, formatted as a single-line address following the address formatting
118-
* rules of the region where the address is located.
121+
* rules of the region where the address is located. Note: the format of this address may not
122+
* match the format of the address in the `postal_address` field. For example, the
123+
* `postal_address` will always represent the country as a 2 letter `region_code` (ex. "US" or
124+
* "CA"), whereas this field will use a longer form of the country name (ex. "USA or "Canada").
119125
* @return value or {@code null} for none
120126
*/
121127
public java.lang.String getFormattedAddress() {
@@ -124,7 +130,10 @@ public java.lang.String getFormattedAddress() {
124130

125131
/**
126132
* The post-processed address, formatted as a single-line address following the address formatting
127-
* rules of the region where the address is located.
133+
* rules of the region where the address is located. Note: the format of this address may not
134+
* match the format of the address in the `postal_address` field. For example, the
135+
* `postal_address` will always represent the country as a 2 letter `region_code` (ex. "US" or
136+
* "CA"), whereas this field will use a longer form of the country name (ex. "USA or "Canada").
128137
* @param formattedAddress formattedAddress or {@code null} for none
129138
*/
130139
public GoogleMapsAddressvalidationV1Address setFormattedAddress(java.lang.String formattedAddress) {
@@ -205,9 +214,9 @@ public GoogleMapsAddressvalidationV1Address setUnconfirmedComponentTypes(java.ut
205214

206215
/**
207216
* Any tokens in the input that could not be resolved. This might be an input that was not
208-
* recognized as a valid part of an address (for example in an input like "123235253253 Main St,
209-
* San Francisco, CA, 94105", the unresolved tokens may look like `["123235253253"]` since that
210-
* does not look like a valid street number.
217+
* recognized as a valid part of an address (for example in an input like "Parcel 0000123123 &
218+
* 0000456456 Str # Guthrie Center IA 50115 US", the unresolved tokens may look like `["Parcel",
219+
* "0000123123", "&", "0000456456"]`.
211220
* @return value or {@code null} for none
212221
*/
213222
public java.util.List<java.lang.String> getUnresolvedTokens() {
@@ -216,9 +225,9 @@ public java.util.List<java.lang.String> getUnresolvedTokens() {
216225

217226
/**
218227
* Any tokens in the input that could not be resolved. This might be an input that was not
219-
* recognized as a valid part of an address (for example in an input like "123235253253 Main St,
220-
* San Francisco, CA, 94105", the unresolved tokens may look like `["123235253253"]` since that
221-
* does not look like a valid street number.
228+
* recognized as a valid part of an address (for example in an input like "Parcel 0000123123 &
229+
* 0000456456 Str # Guthrie Center IA 50115 US", the unresolved tokens may look like `["Parcel",
230+
* "0000123123", "&", "0000456456"]`.
222231
* @param unresolvedTokens unresolvedTokens or {@code null} for none
223232
*/
224233
public GoogleMapsAddressvalidationV1Address setUnresolvedTokens(java.util.List<java.lang.String> unresolvedTokens) {

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-rev20240703-2.0.0</version>
12-
<name>Address Validation API v1-rev20240703-2.0.0</name>
11+
<version>v1-rev20241106-2.0.0</version>
12+
<name>Address Validation API v1-rev20241106-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-rev20240703-2.0.0</version>
25+
<version>v1-rev20241106-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-rev20240703-2.0.0'
38+
implementation 'com.google.apis:google-api-services-addressvalidation:v1-rev20241106-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)