Skip to content

Commit 1e0b97a

Browse files
1 parent a15af7e commit 1e0b97a

File tree

22 files changed

+562
-36
lines changed

22 files changed

+562
-36
lines changed

clients/google-api-services-merchantapi/accounts_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-merchantapi</artifactId>
25-
<version>accounts_v1-rev20251118-2.0.0</version>
25+
<version>accounts_v1-rev20251120-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-merchantapi:accounts_v1-rev20251118-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1-rev20251120-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.merchantapi.accounts_v1.model;
18+
19+
/**
20+
* An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to
21+
* represent degrees latitude and degrees longitude. Unless specified otherwise, this object must
22+
* conform to the WGS84 standard. Values must be within normalized ranges.
23+
*
24+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
25+
* transmitted over HTTP when working with the Merchant API. For a detailed explanation see:
26+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class LatLng extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* The latitude in degrees. It must be in the range [-90.0, +90.0].
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.Double latitude;
40+
41+
/**
42+
* The longitude in degrees. It must be in the range [-180.0, +180.0].
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.Double longitude;
47+
48+
/**
49+
* The latitude in degrees. It must be in the range [-90.0, +90.0].
50+
* @return value or {@code null} for none
51+
*/
52+
public java.lang.Double getLatitude() {
53+
return latitude;
54+
}
55+
56+
/**
57+
* The latitude in degrees. It must be in the range [-90.0, +90.0].
58+
* @param latitude latitude or {@code null} for none
59+
*/
60+
public LatLng setLatitude(java.lang.Double latitude) {
61+
this.latitude = latitude;
62+
return this;
63+
}
64+
65+
/**
66+
* The longitude in degrees. It must be in the range [-180.0, +180.0].
67+
* @return value or {@code null} for none
68+
*/
69+
public java.lang.Double getLongitude() {
70+
return longitude;
71+
}
72+
73+
/**
74+
* The longitude in degrees. It must be in the range [-180.0, +180.0].
75+
* @param longitude longitude or {@code null} for none
76+
*/
77+
public LatLng setLongitude(java.lang.Double longitude) {
78+
this.longitude = longitude;
79+
return this;
80+
}
81+
82+
@Override
83+
public LatLng set(String fieldName, Object value) {
84+
return (LatLng) super.set(fieldName, value);
85+
}
86+
87+
@Override
88+
public LatLng clone() {
89+
return (LatLng) super.clone();
90+
}
91+
92+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.merchantapi.accounts_v1.model;
18+
19+
/**
20+
* A radius area that defines the region area.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Merchant API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class RadiusArea extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. The center of the radius area. It represents a latitude/longitude pair in decimal
34+
* degrees format.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private LatLng latLng;
39+
40+
/**
41+
* Required. The radius distance of the area.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Double radius;
46+
47+
/**
48+
* Optional. The unit of the radius.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String radiusUnits;
53+
54+
/**
55+
* Required. [CLDR territory
56+
* code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) or the country the
57+
* radius area applies to.
58+
* The value may be {@code null}.
59+
*/
60+
@com.google.api.client.util.Key
61+
private java.lang.String regionCode;
62+
63+
/**
64+
* Required. The center of the radius area. It represents a latitude/longitude pair in decimal
65+
* degrees format.
66+
* @return value or {@code null} for none
67+
*/
68+
public LatLng getLatLng() {
69+
return latLng;
70+
}
71+
72+
/**
73+
* Required. The center of the radius area. It represents a latitude/longitude pair in decimal
74+
* degrees format.
75+
* @param latLng latLng or {@code null} for none
76+
*/
77+
public RadiusArea setLatLng(LatLng latLng) {
78+
this.latLng = latLng;
79+
return this;
80+
}
81+
82+
/**
83+
* Required. The radius distance of the area.
84+
* @return value or {@code null} for none
85+
*/
86+
public java.lang.Double getRadius() {
87+
return radius;
88+
}
89+
90+
/**
91+
* Required. The radius distance of the area.
92+
* @param radius radius or {@code null} for none
93+
*/
94+
public RadiusArea setRadius(java.lang.Double radius) {
95+
this.radius = radius;
96+
return this;
97+
}
98+
99+
/**
100+
* Optional. The unit of the radius.
101+
* @return value or {@code null} for none
102+
*/
103+
public java.lang.String getRadiusUnits() {
104+
return radiusUnits;
105+
}
106+
107+
/**
108+
* Optional. The unit of the radius.
109+
* @param radiusUnits radiusUnits or {@code null} for none
110+
*/
111+
public RadiusArea setRadiusUnits(java.lang.String radiusUnits) {
112+
this.radiusUnits = radiusUnits;
113+
return this;
114+
}
115+
116+
/**
117+
* Required. [CLDR territory
118+
* code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) or the country the
119+
* radius area applies to.
120+
* @return value or {@code null} for none
121+
*/
122+
public java.lang.String getRegionCode() {
123+
return regionCode;
124+
}
125+
126+
/**
127+
* Required. [CLDR territory
128+
* code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) or the country the
129+
* radius area applies to.
130+
* @param regionCode regionCode or {@code null} for none
131+
*/
132+
public RadiusArea setRegionCode(java.lang.String regionCode) {
133+
this.regionCode = regionCode;
134+
return this;
135+
}
136+
137+
@Override
138+
public RadiusArea set(String fieldName, Object value) {
139+
return (RadiusArea) super.set(fieldName, value);
140+
}
141+
142+
@Override
143+
public RadiusArea clone() {
144+
return (RadiusArea) super.clone();
145+
}
146+
147+
}

clients/google-api-services-merchantapi/accounts_v1/2.0.0/com/google/api/services/merchantapi/accounts_v1/model/Region.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,13 @@ public final class Region extends com.google.api.client.json.GenericJson {
6161
@com.google.api.client.util.Key
6262
private PostalCodeArea postalCodeArea;
6363

64+
/**
65+
* Optional. A radius area that defines the region area.
66+
* The value may be {@code null}.
67+
*/
68+
@com.google.api.client.util.Key
69+
private RadiusArea radiusArea;
70+
6471
/**
6572
* Output only. Indicates if the region is eligible for use in the Regional Inventory
6673
* configuration.
@@ -145,6 +152,23 @@ public Region setPostalCodeArea(PostalCodeArea postalCodeArea) {
145152
return this;
146153
}
147154

155+
/**
156+
* Optional. A radius area that defines the region area.
157+
* @return value or {@code null} for none
158+
*/
159+
public RadiusArea getRadiusArea() {
160+
return radiusArea;
161+
}
162+
163+
/**
164+
* Optional. A radius area that defines the region area.
165+
* @param radiusArea radiusArea or {@code null} for none
166+
*/
167+
public Region setRadiusArea(RadiusArea radiusArea) {
168+
this.radiusArea = radiusArea;
169+
return this;
170+
}
171+
148172
/**
149173
* Output only. Indicates if the region is eligible for use in the Regional Inventory
150174
* configuration.

clients/google-api-services-merchantapi/accounts_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-merchantapi</artifactId>
11-
<version>accounts_v1-rev20251118-2.0.0</version>
12-
<name>Merchant API accounts_v1-rev20251118-2.0.0</name>
11+
<version>accounts_v1-rev20251120-2.0.0</version>
12+
<name>Merchant API accounts_v1-rev20251120-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-merchantapi/accounts_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-merchantapi</artifactId>
25-
<version>accounts_v1-rev20251118-2.0.0</version>
25+
<version>accounts_v1-rev20251120-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-merchantapi:accounts_v1-rev20251118-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1-rev20251120-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-merchantapi/accounts_v1beta/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-merchantapi</artifactId>
25-
<version>accounts_v1beta-rev20251115-2.0.0</version>
25+
<version>accounts_v1beta-rev20251120-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-merchantapi:accounts_v1beta-rev20251115-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1beta-rev20251120-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)