Skip to content

Commit e4028e7

Browse files
1 parent 2e19fbe commit e4028e7

File tree

18 files changed

+76
-70
lines changed

18 files changed

+76
-70
lines changed

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

clients/google-api-services-merchantapi/accounts_v1beta/2.0.0/com/google/api/services/merchantapi/accounts_v1beta/Merchant.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -766,7 +766,7 @@ public List set(String parameterName, Object value) {
766766
* This request holds the parameters needed by the merchantapi server. After setting any optional
767767
* parameters, call the {@link ListSubaccounts#execute()} method to invoke the remote operation.
768768
*
769-
* @param provider Required. The aggregation service provider. Format: `accounts/{providerId}`
769+
* @param provider Required. The aggregation service provider. Format: `accounts/{accountId}`
770770
* @return the request
771771
*/
772772
public ListSubaccounts listSubaccounts(java.lang.String provider) throws java.io.IOException {
@@ -796,7 +796,7 @@ public class ListSubaccounts extends MerchantRequest<com.google.api.services.mer
796796
* ractGoogleClientRequest)} must be called to initialize this instance immediately after invoking
797797
* the constructor. </p>
798798
*
799-
* @param provider Required. The aggregation service provider. Format: `accounts/{providerId}`
799+
* @param provider Required. The aggregation service provider. Format: `accounts/{accountId}`
800800
* @since 1.13
801801
*/
802802
protected ListSubaccounts(java.lang.String provider) {
@@ -874,17 +874,17 @@ public ListSubaccounts setUploadProtocol(java.lang.String uploadProtocol) {
874874
return (ListSubaccounts) super.setUploadProtocol(uploadProtocol);
875875
}
876876

877-
/** Required. The aggregation service provider. Format: `accounts/{providerId}` */
877+
/** Required. The aggregation service provider. Format: `accounts/{accountId}` */
878878
@com.google.api.client.util.Key
879879
private java.lang.String provider;
880880

881-
/** Required. The aggregation service provider. Format: `accounts/{providerId}`
881+
/** Required. The aggregation service provider. Format: `accounts/{accountId}`
882882
*/
883883
public java.lang.String getProvider() {
884884
return provider;
885885
}
886886

887-
/** Required. The aggregation service provider. Format: `accounts/{providerId}` */
887+
/** Required. The aggregation service provider. Format: `accounts/{accountId}` */
888888
public ListSubaccounts setProvider(java.lang.String provider) {
889889
if (!getSuppressPatternChecks()) {
890890
com.google.api.client.util.Preconditions.checkArgument(PROVIDER_PATTERN.matcher(provider).matches(),

clients/google-api-services-merchantapi/accounts_v1beta/2.0.0/com/google/api/services/merchantapi/accounts_v1beta/model/OnlineReturnPolicy.java

Lines changed: 12 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,14 @@
3131
public final class OnlineReturnPolicy extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* This field specifies if merchant only accepts defective products for returns, and this field is
35-
* required.
34+
* Optional. This field specifies if merchant only accepts defective products for returns.
3635
* The value may be {@code null}.
3736
*/
3837
@com.google.api.client.util.Key
3938
private java.lang.Boolean acceptDefectiveOnly;
4039

4140
/**
42-
* This field specifies if merchant allows customers to exchange products, this field is required.
41+
* Optional. This field specifies if merchant allows customers to exchange products.
4342
* The value may be {@code null}.
4443
*/
4544
@com.google.api.client.util.Key
@@ -90,8 +89,7 @@ public final class OnlineReturnPolicy extends com.google.api.client.json.Generic
9089
private Policy policy;
9190

9291
/**
93-
* The field specifies the number of days it takes for merchants to process refunds, field is
94-
* optional.
92+
* Optional. The field specifies the number of days it takes for merchants to process refunds.
9593
* The value may be {@code null}.
9694
*/
9795
@com.google.api.client.util.Key
@@ -106,8 +104,7 @@ public final class OnlineReturnPolicy extends com.google.api.client.json.Generic
106104
private RestockingFee restockingFee;
107105

108106
/**
109-
* The field specifies the return label source. This field is required when return method is
110-
* BY_MAIL.
107+
* Optional. The field specifies the return label source.
111108
* The value may be {@code null}.
112109
*/
113110
@com.google.api.client.util.Key
@@ -153,17 +150,15 @@ public final class OnlineReturnPolicy extends com.google.api.client.json.Generic
153150
private java.util.List<SeasonalOverride> seasonalOverrides;
154151

155152
/**
156-
* This field specifies if merchant only accepts defective products for returns, and this field is
157-
* required.
153+
* Optional. This field specifies if merchant only accepts defective products for returns.
158154
* @return value or {@code null} for none
159155
*/
160156
public java.lang.Boolean getAcceptDefectiveOnly() {
161157
return acceptDefectiveOnly;
162158
}
163159

164160
/**
165-
* This field specifies if merchant only accepts defective products for returns, and this field is
166-
* required.
161+
* Optional. This field specifies if merchant only accepts defective products for returns.
167162
* @param acceptDefectiveOnly acceptDefectiveOnly or {@code null} for none
168163
*/
169164
public OnlineReturnPolicy setAcceptDefectiveOnly(java.lang.Boolean acceptDefectiveOnly) {
@@ -172,15 +167,15 @@ public OnlineReturnPolicy setAcceptDefectiveOnly(java.lang.Boolean acceptDefecti
172167
}
173168

174169
/**
175-
* This field specifies if merchant allows customers to exchange products, this field is required.
170+
* Optional. This field specifies if merchant allows customers to exchange products.
176171
* @return value or {@code null} for none
177172
*/
178173
public java.lang.Boolean getAcceptExchange() {
179174
return acceptExchange;
180175
}
181176

182177
/**
183-
* This field specifies if merchant allows customers to exchange products, this field is required.
178+
* Optional. This field specifies if merchant allows customers to exchange products.
184179
* @param acceptExchange acceptExchange or {@code null} for none
185180
*/
186181
public OnlineReturnPolicy setAcceptExchange(java.lang.Boolean acceptExchange) {
@@ -292,17 +287,15 @@ public OnlineReturnPolicy setPolicy(Policy policy) {
292287
}
293288

294289
/**
295-
* The field specifies the number of days it takes for merchants to process refunds, field is
296-
* optional.
290+
* Optional. The field specifies the number of days it takes for merchants to process refunds.
297291
* @return value or {@code null} for none
298292
*/
299293
public java.lang.Integer getProcessRefundDays() {
300294
return processRefundDays;
301295
}
302296

303297
/**
304-
* The field specifies the number of days it takes for merchants to process refunds, field is
305-
* optional.
298+
* Optional. The field specifies the number of days it takes for merchants to process refunds.
306299
* @param processRefundDays processRefundDays or {@code null} for none
307300
*/
308301
public OnlineReturnPolicy setProcessRefundDays(java.lang.Integer processRefundDays) {
@@ -330,17 +323,15 @@ public OnlineReturnPolicy setRestockingFee(RestockingFee restockingFee) {
330323
}
331324

332325
/**
333-
* The field specifies the return label source. This field is required when return method is
334-
* BY_MAIL.
326+
* Optional. The field specifies the return label source.
335327
* @return value or {@code null} for none
336328
*/
337329
public java.lang.String getReturnLabelSource() {
338330
return returnLabelSource;
339331
}
340332

341333
/**
342-
* The field specifies the return label source. This field is required when return method is
343-
* BY_MAIL.
334+
* Optional. The field specifies the return label source.
344335
* @param returnLabelSource returnLabelSource or {@code null} for none
345336
*/
346337
public OnlineReturnPolicy setReturnLabelSource(java.lang.String returnLabelSource) {

clients/google-api-services-merchantapi/accounts_v1beta/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_v1beta-rev20250427-2.0.0</version>
12-
<name>Merchant API accounts_v1beta-rev20250427-2.0.0</name>
11+
<version>accounts_v1beta-rev20250430-2.0.0</version>
12+
<name>Merchant API accounts_v1beta-rev20250430-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-merchantapi/datasources_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>datasources_v1beta-rev20250427-2.0.0</version>
25+
<version>datasources_v1beta-rev20250430-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:datasources_v1beta-rev20250427-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:datasources_v1beta-rev20250430-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-merchantapi/datasources_v1beta/2.0.0/com/google/api/services/merchantapi/datasources_v1beta/Merchant.java

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -940,7 +940,8 @@ public List set(String parameterName, Object value) {
940940
* This request holds the parameters needed by the merchantapi server. After setting any optional
941941
* parameters, call the {@link Patch#execute()} method to invoke the remote operation.
942942
*
943-
* @param name Identifier. The name of the data source. Format: `accounts/{account}/dataSources/{datasource}`
943+
* @param name Required. Identifier. The name of the data source. Format:
944+
* `accounts/{account}/dataSources/{datasource}`
944945
* @param content the {@link com.google.api.services.merchantapi.datasources_v1beta.model.DataSource}
945946
* @return the request
946947
*/
@@ -969,7 +970,8 @@ public class Patch extends MerchantRequest<com.google.api.services.merchantapi.d
969970
* Patch#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must
970971
* be called to initialize this instance immediately after invoking the constructor. </p>
971972
*
972-
* @param name Identifier. The name of the data source. Format: `accounts/{account}/dataSources/{datasource}`
973+
* @param name Required. Identifier. The name of the data source. Format:
974+
* `accounts/{account}/dataSources/{datasource}`
973975
* @param content the {@link com.google.api.services.merchantapi.datasources_v1beta.model.DataSource}
974976
* @since 1.13
975977
*/
@@ -1039,20 +1041,21 @@ public Patch setUploadProtocol(java.lang.String uploadProtocol) {
10391041
}
10401042

10411043
/**
1042-
* Identifier. The name of the data source. Format:
1044+
* Required. Identifier. The name of the data source. Format:
10431045
* `accounts/{account}/dataSources/{datasource}`
10441046
*/
10451047
@com.google.api.client.util.Key
10461048
private java.lang.String name;
10471049

1048-
/** Identifier. The name of the data source. Format: `accounts/{account}/dataSources/{datasource}`
1050+
/** Required. Identifier. The name of the data source. Format:
1051+
`accounts/{account}/dataSources/{datasource}`
10491052
*/
10501053
public java.lang.String getName() {
10511054
return name;
10521055
}
10531056

10541057
/**
1055-
* Identifier. The name of the data source. Format:
1058+
* Required. Identifier. The name of the data source. Format:
10561059
* `accounts/{account}/dataSources/{datasource}`
10571060
*/
10581061
public Patch setName(java.lang.String name) {

clients/google-api-services-merchantapi/datasources_v1beta/2.0.0/com/google/api/services/merchantapi/datasources_v1beta/model/DataSource.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ public final class DataSource extends com.google.api.client.json.GenericJson {
7373
private MerchantReviewDataSource merchantReviewDataSource;
7474

7575
/**
76-
* Identifier. The name of the data source. Format: `accounts/{account}/dataSources/{datasource}`
76+
* Required. Identifier. The name of the data source. Format:
77+
* `accounts/{account}/dataSources/{datasource}`
7778
* The value may be {@code null}.
7879
*/
7980
@com.google.api.client.util.Key
@@ -221,15 +222,17 @@ public DataSource setMerchantReviewDataSource(MerchantReviewDataSource merchantR
221222
}
222223

223224
/**
224-
* Identifier. The name of the data source. Format: `accounts/{account}/dataSources/{datasource}`
225+
* Required. Identifier. The name of the data source. Format:
226+
* `accounts/{account}/dataSources/{datasource}`
225227
* @return value or {@code null} for none
226228
*/
227229
public java.lang.String getName() {
228230
return name;
229231
}
230232

231233
/**
232-
* Identifier. The name of the data source. Format: `accounts/{account}/dataSources/{datasource}`
234+
* Required. Identifier. The name of the data source. Format:
235+
* `accounts/{account}/dataSources/{datasource}`
233236
* @param name name or {@code null} for none
234237
*/
235238
public DataSource setName(java.lang.String name) {

clients/google-api-services-merchantapi/datasources_v1beta/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>datasources_v1beta-rev20250427-2.0.0</version>
12-
<name>Merchant API datasources_v1beta-rev20250427-2.0.0</name>
11+
<version>datasources_v1beta-rev20250430-2.0.0</version>
12+
<name>Merchant API datasources_v1beta-rev20250430-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)