Skip to content

Commit b8d4923

Browse files
1 parent 9bac77e commit b8d4923

6 files changed

Lines changed: 21 additions & 21 deletions

File tree

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

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,22 +31,22 @@
3131
public final class ArtifactSummary extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* The version code of the artifact.
34+
* Artifact's version code
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key
3838
private java.lang.Integer versionCode;
3939

4040
/**
41-
* The version code of the artifact.
41+
* Artifact's version code
4242
* @return value or {@code null} for none
4343
*/
4444
public java.lang.Integer getVersionCode() {
4545
return versionCode;
4646
}
4747

4848
/**
49-
* The version code of the artifact.
49+
* Artifact's version code
5050
* @param versionCode versionCode or {@code null} for none
5151
*/
5252
public ArtifactSummary setVersionCode(java.lang.Integer versionCode) {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,22 @@
3232
public final class ListReleaseSummariesResponse extends com.google.api.client.json.GenericJson {
3333

3434
/**
35-
* List of releases for this track. There will be a maximum of 20 releases returned.
35+
* List of releases for this track. A maximum of 20 releases can be returned.
3636
* The value may be {@code null}.
3737
*/
3838
@com.google.api.client.util.Key
3939
private java.util.List<ReleaseSummary> releases;
4040

4141
/**
42-
* List of releases for this track. There will be a maximum of 20 releases returned.
42+
* List of releases for this track. A maximum of 20 releases can be returned.
4343
* @return value or {@code null} for none
4444
*/
4545
public java.util.List<ReleaseSummary> getReleases() {
4646
return releases;
4747
}
4848

4949
/**
50-
* List of releases for this track. There will be a maximum of 20 releases returned.
50+
* List of releases for this track. A maximum of 20 releases can be returned.
5151
* @param releases releases or {@code null} for none
5252
*/
5353
public ListReleaseSummariesResponse setReleases(java.util.List<ReleaseSummary> releases) {

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
public final class ReleaseSummary extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* List of active artifacts on this release.
34+
* List of active artifacts on this release
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key
@@ -58,23 +58,23 @@ public final class ReleaseSummary extends com.google.api.client.json.GenericJson
5858
private java.lang.String releaseName;
5959

6060
/**
61-
* Identifier of the track. More on [track name](https://developers.google.com/android-
62-
* publisher/tracks).
61+
* Identifier for the track. [Learn more about track
62+
* names.](https://developers.google.com/android-publisher/tracks).
6363
* The value may be {@code null}.
6464
*/
6565
@com.google.api.client.util.Key
6666
private java.lang.String track;
6767

6868
/**
69-
* List of active artifacts on this release.
69+
* List of active artifacts on this release
7070
* @return value or {@code null} for none
7171
*/
7272
public java.util.List<ArtifactSummary> getActiveArtifacts() {
7373
return activeArtifacts;
7474
}
7575

7676
/**
77-
* List of active artifacts on this release.
77+
* List of active artifacts on this release
7878
* @param activeArtifacts activeArtifacts or {@code null} for none
7979
*/
8080
public ReleaseSummary setActiveArtifacts(java.util.List<ArtifactSummary> activeArtifacts) {
@@ -117,17 +117,17 @@ public ReleaseSummary setReleaseName(java.lang.String releaseName) {
117117
}
118118

119119
/**
120-
* Identifier of the track. More on [track name](https://developers.google.com/android-
121-
* publisher/tracks).
120+
* Identifier for the track. [Learn more about track
121+
* names.](https://developers.google.com/android-publisher/tracks).
122122
* @return value or {@code null} for none
123123
*/
124124
public java.lang.String getTrack() {
125125
return track;
126126
}
127127

128128
/**
129-
* Identifier of the track. More on [track name](https://developers.google.com/android-
130-
* publisher/tracks).
129+
* Identifier for the track. [Learn more about track
130+
* names.](https://developers.google.com/android-publisher/tracks).
131131
* @param track track or {@code null} for none
132132
*/
133133
public ReleaseSummary setTrack(java.lang.String track) {

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

0 commit comments

Comments
 (0)