Skip to content

Commit efe6b9b

Browse files
1 parent 22ea918 commit efe6b9b

58 files changed

Lines changed: 16573 additions & 11417 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

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

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

Lines changed: 11032 additions & 10143 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
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+
* Contact information for the app.
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 AppContactInformation extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The contact email for this app. Always set.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String contactEmail;
39+
40+
/**
41+
* The contact phone for this app. Optionally provided by the developer.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String phoneNumber;
46+
47+
/**
48+
* The contact website url for this app. Optionally provided by the developer.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String websiteUrl;
53+
54+
/**
55+
* The contact email for this app. Always set.
56+
* @return value or {@code null} for none
57+
*/
58+
public java.lang.String getContactEmail() {
59+
return contactEmail;
60+
}
61+
62+
/**
63+
* The contact email for this app. Always set.
64+
* @param contactEmail contactEmail or {@code null} for none
65+
*/
66+
public AppContactInformation setContactEmail(java.lang.String contactEmail) {
67+
this.contactEmail = contactEmail;
68+
return this;
69+
}
70+
71+
/**
72+
* The contact phone for this app. Optionally provided by the developer.
73+
* @return value or {@code null} for none
74+
*/
75+
public java.lang.String getPhoneNumber() {
76+
return phoneNumber;
77+
}
78+
79+
/**
80+
* The contact phone for this app. Optionally provided by the developer.
81+
* @param phoneNumber phoneNumber or {@code null} for none
82+
*/
83+
public AppContactInformation setPhoneNumber(java.lang.String phoneNumber) {
84+
this.phoneNumber = phoneNumber;
85+
return this;
86+
}
87+
88+
/**
89+
* The contact website url for this app. Optionally provided by the developer.
90+
* @return value or {@code null} for none
91+
*/
92+
public java.lang.String getWebsiteUrl() {
93+
return websiteUrl;
94+
}
95+
96+
/**
97+
* The contact website url for this app. Optionally provided by the developer.
98+
* @param websiteUrl websiteUrl or {@code null} for none
99+
*/
100+
public AppContactInformation setWebsiteUrl(java.lang.String websiteUrl) {
101+
this.websiteUrl = websiteUrl;
102+
return this;
103+
}
104+
105+
@Override
106+
public AppContactInformation set(String fieldName, Object value) {
107+
return (AppContactInformation) super.set(fieldName, value);
108+
}
109+
110+
@Override
111+
public AppContactInformation clone() {
112+
return (AppContactInformation) super.clone();
113+
}
114+
115+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
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+
* An installable set of active APKs. A set of APKs might only contain 1 APK if the app in question
21+
* publishes using APKs. If the app uses app bundles (or a similar technology), this set should
22+
* contain all APKs (even optional ones) that might be installed for this app. A set of APKs should
23+
* be installable together. If certain APKs are exclusive to one another and cannot be installed
24+
* together, then a separate AppStoreAppActiveApkSet should be created.
25+
*
26+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
27+
* transmitted over HTTP when working with the Google Play Android Developer API. For a detailed
28+
* explanation see:
29+
* <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>
30+
* </p>
31+
*
32+
* @author Google, Inc.
33+
*/
34+
@SuppressWarnings("javadoc")
35+
public final class AppStoreAppActiveApkSet extends com.google.api.client.json.GenericJson {
36+
37+
/**
38+
* Required. The ID for the main base application module. Example: base.apk or app.apk.
39+
* The value may be {@code null}.
40+
*/
41+
@com.google.api.client.util.Key
42+
private java.lang.String baseApkId;
43+
44+
/**
45+
* Optional. IDs for split modules that might be installed in combination with the base APK. Can
46+
* be empty if app bundles (or a similar technology) are not used. Example: config.en.apk.
47+
* The value may be {@code null}.
48+
*/
49+
@com.google.api.client.util.Key
50+
private java.util.List<java.lang.String> splitApkId;
51+
52+
/**
53+
* Required. The ID for the main base application module. Example: base.apk or app.apk.
54+
* @return value or {@code null} for none
55+
*/
56+
public java.lang.String getBaseApkId() {
57+
return baseApkId;
58+
}
59+
60+
/**
61+
* Required. The ID for the main base application module. Example: base.apk or app.apk.
62+
* @param baseApkId baseApkId or {@code null} for none
63+
*/
64+
public AppStoreAppActiveApkSet setBaseApkId(java.lang.String baseApkId) {
65+
this.baseApkId = baseApkId;
66+
return this;
67+
}
68+
69+
/**
70+
* Optional. IDs for split modules that might be installed in combination with the base APK. Can
71+
* be empty if app bundles (or a similar technology) are not used. Example: config.en.apk.
72+
* @return value or {@code null} for none
73+
*/
74+
public java.util.List<java.lang.String> getSplitApkId() {
75+
return splitApkId;
76+
}
77+
78+
/**
79+
* Optional. IDs for split modules that might be installed in combination with the base APK. Can
80+
* be empty if app bundles (or a similar technology) are not used. Example: config.en.apk.
81+
* @param splitApkId splitApkId or {@code null} for none
82+
*/
83+
public AppStoreAppActiveApkSet setSplitApkId(java.util.List<java.lang.String> splitApkId) {
84+
this.splitApkId = splitApkId;
85+
return this;
86+
}
87+
88+
@Override
89+
public AppStoreAppActiveApkSet set(String fieldName, Object value) {
90+
return (AppStoreAppActiveApkSet) super.set(fieldName, value);
91+
}
92+
93+
@Override
94+
public AppStoreAppActiveApkSet clone() {
95+
return (AppStoreAppActiveApkSet) super.clone();
96+
}
97+
98+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
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+
* Information about active APKs of an app store hosted app.
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 AppStoreAppActiveApks extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. List specifying which APK sets are distributed together. This list should contain all
35+
* APKs that you're distributing for this app. Add an entry for each individual installable set of
36+
* APKs.
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.util.List<AppStoreAppActiveApkSet> activeApkSets;
41+
42+
static {
43+
// hack to force ProGuard to consider AppStoreAppActiveApkSet used, since otherwise it would be stripped out
44+
// see https://github.com/google/google-api-java-client/issues/543
45+
com.google.api.client.util.Data.nullOf(AppStoreAppActiveApkSet.class);
46+
}
47+
48+
/**
49+
* Required. List specifying which APK sets are distributed together. This list should contain all
50+
* APKs that you're distributing for this app. Add an entry for each individual installable set of
51+
* APKs.
52+
* @return value or {@code null} for none
53+
*/
54+
public java.util.List<AppStoreAppActiveApkSet> getActiveApkSets() {
55+
return activeApkSets;
56+
}
57+
58+
/**
59+
* Required. List specifying which APK sets are distributed together. This list should contain all
60+
* APKs that you're distributing for this app. Add an entry for each individual installable set of
61+
* APKs.
62+
* @param activeApkSets activeApkSets or {@code null} for none
63+
*/
64+
public AppStoreAppActiveApks setActiveApkSets(java.util.List<AppStoreAppActiveApkSet> activeApkSets) {
65+
this.activeApkSets = activeApkSets;
66+
return this;
67+
}
68+
69+
@Override
70+
public AppStoreAppActiveApks set(String fieldName, Object value) {
71+
return (AppStoreAppActiveApks) super.set(fieldName, value);
72+
}
73+
74+
@Override
75+
public AppStoreAppActiveApks clone() {
76+
return (AppStoreAppActiveApks) super.clone();
77+
}
78+
79+
}

0 commit comments

Comments
 (0)