From 13aae9691ec8609c94f49875577f3c7fd790d133 Mon Sep 17 00:00:00 2001
From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com>
Date: Fri, 20 Feb 2026 12:53:36 -0800
Subject: [PATCH] chore: regenerate androidpublisher client
---
.../v3/2.0.0/README.md | 4 +--
.../androidpublisher/AndroidPublisher.java | 5 ++-
.../model/ConvertRegionPricesRequest.java | 36 +++++++++++++++++++
.../v3/2.0.0/pom.xml | 4 +--
.../v3/README.md | 4 +--
5 files changed, 44 insertions(+), 9 deletions(-)
diff --git a/clients/google-api-services-androidpublisher/v3/2.0.0/README.md b/clients/google-api-services-androidpublisher/v3/2.0.0/README.md
index 17db21c8e6d..600da1c0c4a 100644
--- a/clients/google-api-services-androidpublisher/v3/2.0.0/README.md
+++ b/clients/google-api-services-androidpublisher/v3/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-androidpublisher
- v3-rev20260129-2.0.0
+ v3-rev20260204-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-androidpublisher:v3-rev20260129-2.0.0'
+ implementation 'com.google.apis:google-api-services-androidpublisher:v3-rev20260204-2.0.0'
}
```
diff --git a/clients/google-api-services-androidpublisher/v3/2.0.0/com/google/api/services/androidpublisher/AndroidPublisher.java b/clients/google-api-services-androidpublisher/v3/2.0.0/com/google/api/services/androidpublisher/AndroidPublisher.java
index 6c5f9a5e0c0..eef6092143a 100644
--- a/clients/google-api-services-androidpublisher/v3/2.0.0/com/google/api/services/androidpublisher/AndroidPublisher.java
+++ b/clients/google-api-services-androidpublisher/v3/2.0.0/com/google/api/services/androidpublisher/AndroidPublisher.java
@@ -103,7 +103,7 @@ public class AndroidPublisher extends com.google.api.client.googleapis.services.
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}
*
Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}
- * Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
+ * Java: {@code com.google.api.client.http.javanet.NetHttpTransport}
*
*
* @param jsonFactory JSON factory, which may be:
@@ -23704,8 +23704,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}
* Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}
- * Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
- *
+ * Java: {@code com.google.api.client.http.javanet.NetHttpTransport}
*
* @param jsonFactory JSON factory, which may be:
*
diff --git a/clients/google-api-services-androidpublisher/v3/2.0.0/com/google/api/services/androidpublisher/model/ConvertRegionPricesRequest.java b/clients/google-api-services-androidpublisher/v3/2.0.0/com/google/api/services/androidpublisher/model/ConvertRegionPricesRequest.java
index ccc366db8ed..d7e0678832b 100644
--- a/clients/google-api-services-androidpublisher/v3/2.0.0/com/google/api/services/androidpublisher/model/ConvertRegionPricesRequest.java
+++ b/clients/google-api-services-androidpublisher/v3/2.0.0/com/google/api/services/androidpublisher/model/ConvertRegionPricesRequest.java
@@ -37,6 +37,17 @@ public final class ConvertRegionPricesRequest extends com.google.api.client.json
@com.google.api.client.util.Key
private Money price;
+ /**
+ * Optional. Product tax category code in context. Product tax category determines the transaction
+ * tax rates applied to the product that will be factored into the price calculation. If not set,
+ * tax rates for the default product tax category will be used. Refer to the [Help Center
+ * article](https://support.google.com/googleplay/android-developer/answer/16408159) for more
+ * information.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.String productTaxCategoryCode;
+
/**
* The intital price to convert other regions from. Tax exclusive.
* @return value or {@code null} for none
@@ -54,6 +65,31 @@ public ConvertRegionPricesRequest setPrice(Money price) {
return this;
}
+ /**
+ * Optional. Product tax category code in context. Product tax category determines the transaction
+ * tax rates applied to the product that will be factored into the price calculation. If not set,
+ * tax rates for the default product tax category will be used. Refer to the [Help Center
+ * article](https://support.google.com/googleplay/android-developer/answer/16408159) for more
+ * information.
+ * @return value or {@code null} for none
+ */
+ public java.lang.String getProductTaxCategoryCode() {
+ return productTaxCategoryCode;
+ }
+
+ /**
+ * Optional. Product tax category code in context. Product tax category determines the transaction
+ * tax rates applied to the product that will be factored into the price calculation. If not set,
+ * tax rates for the default product tax category will be used. Refer to the [Help Center
+ * article](https://support.google.com/googleplay/android-developer/answer/16408159) for more
+ * information.
+ * @param productTaxCategoryCode productTaxCategoryCode or {@code null} for none
+ */
+ public ConvertRegionPricesRequest setProductTaxCategoryCode(java.lang.String productTaxCategoryCode) {
+ this.productTaxCategoryCode = productTaxCategoryCode;
+ return this;
+ }
+
@Override
public ConvertRegionPricesRequest set(String fieldName, Object value) {
return (ConvertRegionPricesRequest) super.set(fieldName, value);
diff --git a/clients/google-api-services-androidpublisher/v3/2.0.0/pom.xml b/clients/google-api-services-androidpublisher/v3/2.0.0/pom.xml
index a6273562e49..1628ebc40b0 100644
--- a/clients/google-api-services-androidpublisher/v3/2.0.0/pom.xml
+++ b/clients/google-api-services-androidpublisher/v3/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-androidpublisher
- v3-rev20260129-2.0.0
- Google Play Android Developer API v3-rev20260129-2.0.0
+ v3-rev20260204-2.0.0
+ Google Play Android Developer API v3-rev20260204-2.0.0
jar
2011
diff --git a/clients/google-api-services-androidpublisher/v3/README.md b/clients/google-api-services-androidpublisher/v3/README.md
index 17db21c8e6d..600da1c0c4a 100644
--- a/clients/google-api-services-androidpublisher/v3/README.md
+++ b/clients/google-api-services-androidpublisher/v3/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-androidpublisher
- v3-rev20260129-2.0.0
+ v3-rev20260204-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-androidpublisher:v3-rev20260129-2.0.0'
+ implementation 'com.google.apis:google-api-services-androidpublisher:v3-rev20260204-2.0.0'
}
```