Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-androidpublisher</artifactId>
<version>v3-rev20260129-2.0.0</version>
<version>v3-rev20260204-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class AndroidPublisher extends com.google.api.client.googleapis.services.
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </li>
* </ul>
* @param jsonFactory JSON factory, which may be:
Expand Down Expand Up @@ -23704,8 +23704,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* </li>
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </ul>
* @param jsonFactory JSON factory, which may be:
* <ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-androidpublisher</artifactId>
<version>v3-rev20260129-2.0.0</version>
<name>Google Play Android Developer API v3-rev20260129-2.0.0</name>
<version>v3-rev20260204-2.0.0</version>
<name>Google Play Android Developer API v3-rev20260204-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-androidpublisher/v3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-androidpublisher</artifactId>
<version>v3-rev20260129-2.0.0</version>
<version>v3-rev20260204-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down