Skip to content

Commit 7b7a12d

Browse files
1 parent 53c9e8c commit 7b7a12d

File tree

48 files changed

+8314
-6
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+8314
-6
lines changed

clients/google-api-services-androidpublisher/v3/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-androidpublisher</artifactId>
25-
<version>v3-rev20250710-2.0.0</version>
25+
<version>v3-rev20250719-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-androidpublisher:v3-rev20250710-2.0.0'
38+
implementation 'com.google.apis:google-api-services-androidpublisher:v3-rev20250719-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-androidpublisher/v3/2.0.0/com/google/api/services/androidpublisher/AndroidPublisher.java

Lines changed: 3025 additions & 0 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,166 @@
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.androidpublisher.model;
18+
19+
/**
20+
* Request message for ActivateOneTimeProductOffer.
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 Google Play Android Developer API. For a detailed
24+
* explanation see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class ActivateOneTimeProductOfferRequest extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. The latency tolerance for the propagation of this update. Defaults to latency-
35+
* sensitive.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String latencyTolerance;
40+
41+
/**
42+
* Required. The offer ID of the offer to activate.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String offerId;
47+
48+
/**
49+
* Required. The parent app (package name) of the offer to activate.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.String packageName;
54+
55+
/**
56+
* Required. The parent one-time product (ID) of the offer to activate.
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key
60+
private java.lang.String productId;
61+
62+
/**
63+
* Required. The parent purchase option (ID) of the offer to activate.
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private java.lang.String purchaseOptionId;
68+
69+
/**
70+
* Optional. The latency tolerance for the propagation of this update. Defaults to latency-
71+
* sensitive.
72+
* @return value or {@code null} for none
73+
*/
74+
public java.lang.String getLatencyTolerance() {
75+
return latencyTolerance;
76+
}
77+
78+
/**
79+
* Optional. The latency tolerance for the propagation of this update. Defaults to latency-
80+
* sensitive.
81+
* @param latencyTolerance latencyTolerance or {@code null} for none
82+
*/
83+
public ActivateOneTimeProductOfferRequest setLatencyTolerance(java.lang.String latencyTolerance) {
84+
this.latencyTolerance = latencyTolerance;
85+
return this;
86+
}
87+
88+
/**
89+
* Required. The offer ID of the offer to activate.
90+
* @return value or {@code null} for none
91+
*/
92+
public java.lang.String getOfferId() {
93+
return offerId;
94+
}
95+
96+
/**
97+
* Required. The offer ID of the offer to activate.
98+
* @param offerId offerId or {@code null} for none
99+
*/
100+
public ActivateOneTimeProductOfferRequest setOfferId(java.lang.String offerId) {
101+
this.offerId = offerId;
102+
return this;
103+
}
104+
105+
/**
106+
* Required. The parent app (package name) of the offer to activate.
107+
* @return value or {@code null} for none
108+
*/
109+
public java.lang.String getPackageName() {
110+
return packageName;
111+
}
112+
113+
/**
114+
* Required. The parent app (package name) of the offer to activate.
115+
* @param packageName packageName or {@code null} for none
116+
*/
117+
public ActivateOneTimeProductOfferRequest setPackageName(java.lang.String packageName) {
118+
this.packageName = packageName;
119+
return this;
120+
}
121+
122+
/**
123+
* Required. The parent one-time product (ID) of the offer to activate.
124+
* @return value or {@code null} for none
125+
*/
126+
public java.lang.String getProductId() {
127+
return productId;
128+
}
129+
130+
/**
131+
* Required. The parent one-time product (ID) of the offer to activate.
132+
* @param productId productId or {@code null} for none
133+
*/
134+
public ActivateOneTimeProductOfferRequest setProductId(java.lang.String productId) {
135+
this.productId = productId;
136+
return this;
137+
}
138+
139+
/**
140+
* Required. The parent purchase option (ID) of the offer to activate.
141+
* @return value or {@code null} for none
142+
*/
143+
public java.lang.String getPurchaseOptionId() {
144+
return purchaseOptionId;
145+
}
146+
147+
/**
148+
* Required. The parent purchase option (ID) of the offer to activate.
149+
* @param purchaseOptionId purchaseOptionId or {@code null} for none
150+
*/
151+
public ActivateOneTimeProductOfferRequest setPurchaseOptionId(java.lang.String purchaseOptionId) {
152+
this.purchaseOptionId = purchaseOptionId;
153+
return this;
154+
}
155+
156+
@Override
157+
public ActivateOneTimeProductOfferRequest set(String fieldName, Object value) {
158+
return (ActivateOneTimeProductOfferRequest) super.set(fieldName, value);
159+
}
160+
161+
@Override
162+
public ActivateOneTimeProductOfferRequest clone() {
163+
return (ActivateOneTimeProductOfferRequest) super.clone();
164+
}
165+
166+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
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.androidpublisher.model;
18+
19+
/**
20+
* Request message for UpdatePurchaseOptionState.
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 Google Play Android Developer API. For a detailed
24+
* explanation see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class ActivatePurchaseOptionRequest extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. The latency tolerance for the propagation of this product update. Defaults to
35+
* latency-sensitive.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String latencyTolerance;
40+
41+
/**
42+
* Required. The parent app (package name) of the purchase option to activate.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String packageName;
47+
48+
/**
49+
* Required. The parent one-time product (ID) of the purchase option to activate.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.String productId;
54+
55+
/**
56+
* Required. The purchase option ID of the purchase option to activate.
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key
60+
private java.lang.String purchaseOptionId;
61+
62+
/**
63+
* Optional. The latency tolerance for the propagation of this product update. Defaults to
64+
* latency-sensitive.
65+
* @return value or {@code null} for none
66+
*/
67+
public java.lang.String getLatencyTolerance() {
68+
return latencyTolerance;
69+
}
70+
71+
/**
72+
* Optional. The latency tolerance for the propagation of this product update. Defaults to
73+
* latency-sensitive.
74+
* @param latencyTolerance latencyTolerance or {@code null} for none
75+
*/
76+
public ActivatePurchaseOptionRequest setLatencyTolerance(java.lang.String latencyTolerance) {
77+
this.latencyTolerance = latencyTolerance;
78+
return this;
79+
}
80+
81+
/**
82+
* Required. The parent app (package name) of the purchase option to activate.
83+
* @return value or {@code null} for none
84+
*/
85+
public java.lang.String getPackageName() {
86+
return packageName;
87+
}
88+
89+
/**
90+
* Required. The parent app (package name) of the purchase option to activate.
91+
* @param packageName packageName or {@code null} for none
92+
*/
93+
public ActivatePurchaseOptionRequest setPackageName(java.lang.String packageName) {
94+
this.packageName = packageName;
95+
return this;
96+
}
97+
98+
/**
99+
* Required. The parent one-time product (ID) of the purchase option to activate.
100+
* @return value or {@code null} for none
101+
*/
102+
public java.lang.String getProductId() {
103+
return productId;
104+
}
105+
106+
/**
107+
* Required. The parent one-time product (ID) of the purchase option to activate.
108+
* @param productId productId or {@code null} for none
109+
*/
110+
public ActivatePurchaseOptionRequest setProductId(java.lang.String productId) {
111+
this.productId = productId;
112+
return this;
113+
}
114+
115+
/**
116+
* Required. The purchase option ID of the purchase option to activate.
117+
* @return value or {@code null} for none
118+
*/
119+
public java.lang.String getPurchaseOptionId() {
120+
return purchaseOptionId;
121+
}
122+
123+
/**
124+
* Required. The purchase option ID of the purchase option to activate.
125+
* @param purchaseOptionId purchaseOptionId or {@code null} for none
126+
*/
127+
public ActivatePurchaseOptionRequest setPurchaseOptionId(java.lang.String purchaseOptionId) {
128+
this.purchaseOptionId = purchaseOptionId;
129+
return this;
130+
}
131+
132+
@Override
133+
public ActivatePurchaseOptionRequest set(String fieldName, Object value) {
134+
return (ActivatePurchaseOptionRequest) super.set(fieldName, value);
135+
}
136+
137+
@Override
138+
public ActivatePurchaseOptionRequest clone() {
139+
return (ActivatePurchaseOptionRequest) super.clone();
140+
}
141+
142+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
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.androidpublisher.model;
18+
19+
/**
20+
* Request message for BatchDeleteOneTimeProductOffers.
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 Google Play Android Developer API. For a detailed
24+
* explanation see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class BatchDeleteOneTimeProductOffersRequest extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. A list of update requests of up to 100 elements. All requests must correspond to
35+
* different offers.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.util.List<DeleteOneTimeProductOfferRequest> requests;
40+
41+
/**
42+
* Required. A list of update requests of up to 100 elements. All requests must correspond to
43+
* different offers.
44+
* @return value or {@code null} for none
45+
*/
46+
public java.util.List<DeleteOneTimeProductOfferRequest> getRequests() {
47+
return requests;
48+
}
49+
50+
/**
51+
* Required. A list of update requests of up to 100 elements. All requests must correspond to
52+
* different offers.
53+
* @param requests requests or {@code null} for none
54+
*/
55+
public BatchDeleteOneTimeProductOffersRequest setRequests(java.util.List<DeleteOneTimeProductOfferRequest> requests) {
56+
this.requests = requests;
57+
return this;
58+
}
59+
60+
@Override
61+
public BatchDeleteOneTimeProductOffersRequest set(String fieldName, Object value) {
62+
return (BatchDeleteOneTimeProductOffersRequest) super.set(fieldName, value);
63+
}
64+
65+
@Override
66+
public BatchDeleteOneTimeProductOffersRequest clone() {
67+
return (BatchDeleteOneTimeProductOffersRequest) super.clone();
68+
}
69+
70+
}

0 commit comments

Comments
 (0)