Skip to content

Commit 8a27d8a

Browse files
chore: regenerate androidpublisher client
1 parent ebb6aa7 commit 8a27d8a

File tree

5 files changed

+44
-9
lines changed

5 files changed

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

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class AndroidPublisher extends com.google.api.client.googleapis.services.
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -23704,8 +23704,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
2370423704
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
2370523705
* <li>Android: {@code newCompatibleTransport} from
2370623706
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
23707-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
23708-
* </li>
23707+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
2370923708
* </ul>
2371023709
* @param jsonFactory JSON factory, which may be:
2371123710
* <ul>

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

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,17 @@ public final class ConvertRegionPricesRequest extends com.google.api.client.json
3737
@com.google.api.client.util.Key
3838
private Money price;
3939

40+
/**
41+
* Optional. Product tax category code in context. Product tax category determines the transaction
42+
* tax rates applied to the product that will be factored into the price calculation. If not set,
43+
* tax rates for the default product tax category will be used. Refer to the [Help Center
44+
* article](https://support.google.com/googleplay/android-developer/answer/16408159) for more
45+
* information.
46+
* The value may be {@code null}.
47+
*/
48+
@com.google.api.client.util.Key
49+
private java.lang.String productTaxCategoryCode;
50+
4051
/**
4152
* The intital price to convert other regions from. Tax exclusive.
4253
* @return value or {@code null} for none
@@ -54,6 +65,31 @@ public ConvertRegionPricesRequest setPrice(Money price) {
5465
return this;
5566
}
5667

68+
/**
69+
* Optional. Product tax category code in context. Product tax category determines the transaction
70+
* tax rates applied to the product that will be factored into the price calculation. If not set,
71+
* tax rates for the default product tax category will be used. Refer to the [Help Center
72+
* article](https://support.google.com/googleplay/android-developer/answer/16408159) for more
73+
* information.
74+
* @return value or {@code null} for none
75+
*/
76+
public java.lang.String getProductTaxCategoryCode() {
77+
return productTaxCategoryCode;
78+
}
79+
80+
/**
81+
* Optional. Product tax category code in context. Product tax category determines the transaction
82+
* tax rates applied to the product that will be factored into the price calculation. If not set,
83+
* tax rates for the default product tax category will be used. Refer to the [Help Center
84+
* article](https://support.google.com/googleplay/android-developer/answer/16408159) for more
85+
* information.
86+
* @param productTaxCategoryCode productTaxCategoryCode or {@code null} for none
87+
*/
88+
public ConvertRegionPricesRequest setProductTaxCategoryCode(java.lang.String productTaxCategoryCode) {
89+
this.productTaxCategoryCode = productTaxCategoryCode;
90+
return this;
91+
}
92+
5793
@Override
5894
public ConvertRegionPricesRequest set(String fieldName, Object value) {
5995
return (ConvertRegionPricesRequest) super.set(fieldName, value);

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-rev20260129-2.0.0</version>
12-
<name>Google Play Android Developer API v3-rev20260129-2.0.0</name>
11+
<version>v3-rev20260204-2.0.0</version>
12+
<name>Google Play Android Developer API v3-rev20260204-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-rev20260129-2.0.0</version>
25+
<version>v3-rev20260204-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-rev20260129-2.0.0'
38+
implementation 'com.google.apis:google-api-services-androidpublisher:v3-rev20260204-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)