Skip to content

Commit 69ebfa7

Browse files
1 parent 45f855f commit 69ebfa7

File tree

7 files changed

+167
-6
lines changed

7 files changed

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

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ public final class OneTimePurchaseDetails extends com.google.api.client.json.Gen
3737
@com.google.api.client.util.Key
3838
private java.lang.String offerId;
3939

40+
/**
41+
* The details of a pre-order purchase. Only set if it is a pre-order purchase. Note that this
42+
* field will be set even after pre-order is fulfilled.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private PreorderDetails preorderDetails;
47+
4048
/**
4149
* ID of the purchase option. This field is set for both purchase options and variant offers. For
4250
* purchase options, this ID identifies the purchase option itself. For variant offers, this ID
@@ -78,6 +86,25 @@ public OneTimePurchaseDetails setOfferId(java.lang.String offerId) {
7886
return this;
7987
}
8088

89+
/**
90+
* The details of a pre-order purchase. Only set if it is a pre-order purchase. Note that this
91+
* field will be set even after pre-order is fulfilled.
92+
* @return value or {@code null} for none
93+
*/
94+
public PreorderDetails getPreorderDetails() {
95+
return preorderDetails;
96+
}
97+
98+
/**
99+
* The details of a pre-order purchase. Only set if it is a pre-order purchase. Note that this
100+
* field will be set even after pre-order is fulfilled.
101+
* @param preorderDetails preorderDetails or {@code null} for none
102+
*/
103+
public OneTimePurchaseDetails setPreorderDetails(PreorderDetails preorderDetails) {
104+
this.preorderDetails = preorderDetails;
105+
return this;
106+
}
107+
81108
/**
82109
* ID of the purchase option. This field is set for both purchase options and variant offers. For
83110
* purchase options, this ID identifies the purchase option itself. For variant offers, this ID
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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+
* Details of a pre-order purchase.
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 PreorderDetails extends com.google.api.client.json.GenericJson {
32+
33+
@Override
34+
public PreorderDetails set(String fieldName, Object value) {
35+
return (PreorderDetails) super.set(fieldName, value);
36+
}
37+
38+
@Override
39+
public PreorderDetails clone() {
40+
return (PreorderDetails) super.clone();
41+
}
42+
43+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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+
* Offer details information related to a preorder line item.
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 PreorderOfferDetails extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The time when a preordered item is released for a preorder purchase.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private String preorderReleaseTime;
39+
40+
/**
41+
* The time when a preordered item is released for a preorder purchase.
42+
* @return value or {@code null} for none
43+
*/
44+
public String getPreorderReleaseTime() {
45+
return preorderReleaseTime;
46+
}
47+
48+
/**
49+
* The time when a preordered item is released for a preorder purchase.
50+
* @param preorderReleaseTime preorderReleaseTime or {@code null} for none
51+
*/
52+
public PreorderOfferDetails setPreorderReleaseTime(String preorderReleaseTime) {
53+
this.preorderReleaseTime = preorderReleaseTime;
54+
return this;
55+
}
56+
57+
@Override
58+
public PreorderOfferDetails set(String fieldName, Object value) {
59+
return (PreorderOfferDetails) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public PreorderOfferDetails clone() {
64+
return (PreorderOfferDetails) super.clone();
65+
}
66+
67+
}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,13 @@ public final class ProductOfferDetails extends com.google.api.client.json.Generi
5959
@com.google.api.client.util.Key
6060
private java.lang.String offerToken;
6161

62+
/**
63+
* Offer details for a preorder offer. This will only be set for preorders.
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private PreorderOfferDetails preorderOfferDetails;
68+
6269
/**
6370
* The purchase option ID.
6471
* The value may be {@code null}.
@@ -158,6 +165,23 @@ public ProductOfferDetails setOfferToken(java.lang.String offerToken) {
158165
return this;
159166
}
160167

168+
/**
169+
* Offer details for a preorder offer. This will only be set for preorders.
170+
* @return value or {@code null} for none
171+
*/
172+
public PreorderOfferDetails getPreorderOfferDetails() {
173+
return preorderOfferDetails;
174+
}
175+
176+
/**
177+
* Offer details for a preorder offer. This will only be set for preorders.
178+
* @param preorderOfferDetails preorderOfferDetails or {@code null} for none
179+
*/
180+
public ProductOfferDetails setPreorderOfferDetails(PreorderOfferDetails preorderOfferDetails) {
181+
this.preorderOfferDetails = preorderOfferDetails;
182+
return this;
183+
}
184+
161185
/**
162186
* The purchase option ID.
163187
* @return value or {@code null} for none

clients/google-api-services-androidpublisher/v3/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-androidpublisher</artifactId>
11-
<version>v3-rev20250904-2.0.0</version>
12-
<name>Google Play Android Developer API v3-rev20250904-2.0.0</name>
11+
<version>v3-rev20251028-2.0.0</version>
12+
<name>Google Play Android Developer API v3-rev20251028-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)