Skip to content

Commit 6727a80

Browse files
1 parent 0993660 commit 6727a80

File tree

12 files changed

+1025
-6
lines changed

12 files changed

+1025
-6
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-rev20250819-2.0.0</version>
25+
<version>accounts_v1-rev20250823-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-rev20250819-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1-rev20250823-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 407 additions & 0 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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+
* Request message for the `BatchCreateRegions` method.
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 BatchCreateRegionsRequest extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. The region(s) to create. The maximum number of regions that can be created in a batch
34+
* is 100.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<CreateRegionRequest> requests;
39+
40+
/**
41+
* Required. The region(s) to create. The maximum number of regions that can be created in a batch
42+
* is 100.
43+
* @return value or {@code null} for none
44+
*/
45+
public java.util.List<CreateRegionRequest> getRequests() {
46+
return requests;
47+
}
48+
49+
/**
50+
* Required. The region(s) to create. The maximum number of regions that can be created in a batch
51+
* is 100.
52+
* @param requests requests or {@code null} for none
53+
*/
54+
public BatchCreateRegionsRequest setRequests(java.util.List<CreateRegionRequest> requests) {
55+
this.requests = requests;
56+
return this;
57+
}
58+
59+
@Override
60+
public BatchCreateRegionsRequest set(String fieldName, Object value) {
61+
return (BatchCreateRegionsRequest) super.set(fieldName, value);
62+
}
63+
64+
@Override
65+
public BatchCreateRegionsRequest clone() {
66+
return (BatchCreateRegionsRequest) super.clone();
67+
}
68+
69+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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+
* Response message for the `BatchCreateRegions` method.
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 BatchCreateRegionsResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The created region(s).
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<Region> regions;
38+
39+
/**
40+
* The created region(s).
41+
* @return value or {@code null} for none
42+
*/
43+
public java.util.List<Region> getRegions() {
44+
return regions;
45+
}
46+
47+
/**
48+
* The created region(s).
49+
* @param regions regions or {@code null} for none
50+
*/
51+
public BatchCreateRegionsResponse setRegions(java.util.List<Region> regions) {
52+
this.regions = regions;
53+
return this;
54+
}
55+
56+
@Override
57+
public BatchCreateRegionsResponse set(String fieldName, Object value) {
58+
return (BatchCreateRegionsResponse) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public BatchCreateRegionsResponse clone() {
63+
return (BatchCreateRegionsResponse) super.clone();
64+
}
65+
66+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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+
* Request message for the `BatchDeleteRegions` method.
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 BatchDeleteRegionsRequest extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. The names of the regions to delete. A maximum of 1000 regions can be deleted in a
34+
* batch.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<DeleteRegionRequest> requests;
39+
40+
/**
41+
* Required. The names of the regions to delete. A maximum of 1000 regions can be deleted in a
42+
* batch.
43+
* @return value or {@code null} for none
44+
*/
45+
public java.util.List<DeleteRegionRequest> getRequests() {
46+
return requests;
47+
}
48+
49+
/**
50+
* Required. The names of the regions to delete. A maximum of 1000 regions can be deleted in a
51+
* batch.
52+
* @param requests requests or {@code null} for none
53+
*/
54+
public BatchDeleteRegionsRequest setRequests(java.util.List<DeleteRegionRequest> requests) {
55+
this.requests = requests;
56+
return this;
57+
}
58+
59+
@Override
60+
public BatchDeleteRegionsRequest set(String fieldName, Object value) {
61+
return (BatchDeleteRegionsRequest) super.set(fieldName, value);
62+
}
63+
64+
@Override
65+
public BatchDeleteRegionsRequest clone() {
66+
return (BatchDeleteRegionsRequest) super.clone();
67+
}
68+
69+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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+
* Request message for the `BatchUpdateRegions` method.
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 BatchUpdateRegionsRequest extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. The region(s) to update. The maximum number of regions that can be updated in a batch
34+
* is 100.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<UpdateRegionRequest> requests;
39+
40+
/**
41+
* Required. The region(s) to update. The maximum number of regions that can be updated in a batch
42+
* is 100.
43+
* @return value or {@code null} for none
44+
*/
45+
public java.util.List<UpdateRegionRequest> getRequests() {
46+
return requests;
47+
}
48+
49+
/**
50+
* Required. The region(s) to update. The maximum number of regions that can be updated in a batch
51+
* is 100.
52+
* @param requests requests or {@code null} for none
53+
*/
54+
public BatchUpdateRegionsRequest setRequests(java.util.List<UpdateRegionRequest> requests) {
55+
this.requests = requests;
56+
return this;
57+
}
58+
59+
@Override
60+
public BatchUpdateRegionsRequest set(String fieldName, Object value) {
61+
return (BatchUpdateRegionsRequest) super.set(fieldName, value);
62+
}
63+
64+
@Override
65+
public BatchUpdateRegionsRequest clone() {
66+
return (BatchUpdateRegionsRequest) super.clone();
67+
}
68+
69+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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+
* Response message for the `BatchUpdateRegions` method.
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 BatchUpdateRegionsResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The updated region(s).
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<Region> regions;
38+
39+
/**
40+
* The updated region(s).
41+
* @return value or {@code null} for none
42+
*/
43+
public java.util.List<Region> getRegions() {
44+
return regions;
45+
}
46+
47+
/**
48+
* The updated region(s).
49+
* @param regions regions or {@code null} for none
50+
*/
51+
public BatchUpdateRegionsResponse setRegions(java.util.List<Region> regions) {
52+
this.regions = regions;
53+
return this;
54+
}
55+
56+
@Override
57+
public BatchUpdateRegionsResponse set(String fieldName, Object value) {
58+
return (BatchUpdateRegionsResponse) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public BatchUpdateRegionsResponse clone() {
63+
return (BatchUpdateRegionsResponse) super.clone();
64+
}
65+
66+
}

0 commit comments

Comments
 (0)