Skip to content
Merged
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-rev20260706-2.0.0</version>
<version>v3-rev20260723-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-rev20260706-2.0.0'
implementation 'com.google.apis:google-api-services-androidpublisher:v3-rev20260723-2.0.0'
}
```

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.androidpublisher.model;

/**
* Contact information for the app.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Google Play Android Developer API. For a detailed
* explanation see:
* <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>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class AppContactInformation extends com.google.api.client.json.GenericJson {

/**
* The contact email for this app. Always set.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String contactEmail;

/**
* The contact phone for this app. Optionally provided by the developer.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String phoneNumber;

/**
* The contact website url for this app. Optionally provided by the developer.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String websiteUrl;

/**
* The contact email for this app. Always set.
* @return value or {@code null} for none
*/
public java.lang.String getContactEmail() {
return contactEmail;
}

/**
* The contact email for this app. Always set.
* @param contactEmail contactEmail or {@code null} for none
*/
public AppContactInformation setContactEmail(java.lang.String contactEmail) {
this.contactEmail = contactEmail;
return this;
}

/**
* The contact phone for this app. Optionally provided by the developer.
* @return value or {@code null} for none
*/
public java.lang.String getPhoneNumber() {
return phoneNumber;
}

/**
* The contact phone for this app. Optionally provided by the developer.
* @param phoneNumber phoneNumber or {@code null} for none
*/
public AppContactInformation setPhoneNumber(java.lang.String phoneNumber) {
this.phoneNumber = phoneNumber;
return this;
}

/**
* The contact website url for this app. Optionally provided by the developer.
* @return value or {@code null} for none
*/
public java.lang.String getWebsiteUrl() {
return websiteUrl;
}

/**
* The contact website url for this app. Optionally provided by the developer.
* @param websiteUrl websiteUrl or {@code null} for none
*/
public AppContactInformation setWebsiteUrl(java.lang.String websiteUrl) {
this.websiteUrl = websiteUrl;
return this;
}

@Override
public AppContactInformation set(String fieldName, Object value) {
return (AppContactInformation) super.set(fieldName, value);
}

@Override
public AppContactInformation clone() {
return (AppContactInformation) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.androidpublisher.model;

/**
* An installable set of active APKs. A set of APKs might only contain 1 APK if the app in question
* publishes using APKs. If the app uses app bundles (or a similar technology), this set should
* contain all APKs (even optional ones) that might be installed for this app. A set of APKs should
* be installable together. If certain APKs are exclusive to one another and cannot be installed
* together, then a separate AppStoreAppActiveApkSet should be created.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Google Play Android Developer API. For a detailed
* explanation see:
* <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>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class AppStoreAppActiveApkSet extends com.google.api.client.json.GenericJson {

/**
* Required. The ID for the main base application module. Example: base.apk or app.apk.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String baseApkId;

/**
* Optional. IDs for split modules that might be installed in combination with the base APK. Can
* be empty if app bundles (or a similar technology) are not used. Example: config.en.apk.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<java.lang.String> splitApkId;

/**
* Required. The ID for the main base application module. Example: base.apk or app.apk.
* @return value or {@code null} for none
*/
public java.lang.String getBaseApkId() {
return baseApkId;
}

/**
* Required. The ID for the main base application module. Example: base.apk or app.apk.
* @param baseApkId baseApkId or {@code null} for none
*/
public AppStoreAppActiveApkSet setBaseApkId(java.lang.String baseApkId) {
this.baseApkId = baseApkId;
return this;
}

/**
* Optional. IDs for split modules that might be installed in combination with the base APK. Can
* be empty if app bundles (or a similar technology) are not used. Example: config.en.apk.
* @return value or {@code null} for none
*/
public java.util.List<java.lang.String> getSplitApkId() {
return splitApkId;
}

/**
* Optional. IDs for split modules that might be installed in combination with the base APK. Can
* be empty if app bundles (or a similar technology) are not used. Example: config.en.apk.
* @param splitApkId splitApkId or {@code null} for none
*/
public AppStoreAppActiveApkSet setSplitApkId(java.util.List<java.lang.String> splitApkId) {
this.splitApkId = splitApkId;
return this;
}

@Override
public AppStoreAppActiveApkSet set(String fieldName, Object value) {
return (AppStoreAppActiveApkSet) super.set(fieldName, value);
}

@Override
public AppStoreAppActiveApkSet clone() {
return (AppStoreAppActiveApkSet) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.androidpublisher.model;

/**
* Information about active APKs of an app store hosted app.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Google Play Android Developer API. For a detailed
* explanation see:
* <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>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class AppStoreAppActiveApks extends com.google.api.client.json.GenericJson {

/**
* Required. List specifying which APK sets are distributed together. This list should contain all
* APKs that you're distributing for this app. Add an entry for each individual installable set of
* APKs.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<AppStoreAppActiveApkSet> activeApkSets;

static {
// hack to force ProGuard to consider AppStoreAppActiveApkSet used, since otherwise it would be stripped out
// see https://github.com/google/google-api-java-client/issues/543
com.google.api.client.util.Data.nullOf(AppStoreAppActiveApkSet.class);
}

/**
* Required. List specifying which APK sets are distributed together. This list should contain all
* APKs that you're distributing for this app. Add an entry for each individual installable set of
* APKs.
* @return value or {@code null} for none
*/
public java.util.List<AppStoreAppActiveApkSet> getActiveApkSets() {
return activeApkSets;
}

/**
* Required. List specifying which APK sets are distributed together. This list should contain all
* APKs that you're distributing for this app. Add an entry for each individual installable set of
* APKs.
* @param activeApkSets activeApkSets or {@code null} for none
*/
public AppStoreAppActiveApks setActiveApkSets(java.util.List<AppStoreAppActiveApkSet> activeApkSets) {
this.activeApkSets = activeApkSets;
return this;
}

@Override
public AppStoreAppActiveApks set(String fieldName, Object value) {
return (AppStoreAppActiveApks) super.set(fieldName, value);
}

@Override
public AppStoreAppActiveApks clone() {
return (AppStoreAppActiveApks) super.clone();
}

}
Loading
Loading