Skip to content

Commit bd695c8

Browse files
1 parent 11db303 commit bd695c8

File tree

10 files changed

+302
-12
lines changed

10 files changed

+302
-12
lines changed

clients/google-api-services-playdeveloperreporting/v1alpha1/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-playdeveloperreporting</artifactId>
25-
<version>v1alpha1-rev20240926-2.0.0</version>
25+
<version>v1alpha1-rev20241009-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-playdeveloperreporting:v1alpha1-rev20240926-2.0.0'
38+
implementation 'com.google.apis:google-api-services-playdeveloperreporting:v1alpha1-rev20241009-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-playdeveloperreporting/v1alpha1/2.0.0/com/google/api/services/playdeveloperreporting/v1alpha1/model/GooglePlayDeveloperReportingV1alpha1ErrorIssue.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,14 @@
3535
@SuppressWarnings("javadoc")
3636
public final class GooglePlayDeveloperReportingV1alpha1ErrorIssue extends com.google.api.client.json.GenericJson {
3737

38+
/**
39+
* List of annotations for an issue. Annotations provide additional information that may help in
40+
* diagnosing and fixing the issue.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.util.List<GooglePlayDeveloperReportingV1alpha1IssueAnnotation> annotations;
45+
3846
/**
3947
* Cause of the issue. Depending on the type this can be either: * APPLICATION_NOT_RESPONDING: the
4048
* type of ANR that occurred, e.g., 'Input dispatching timed out'. * CRASH: for Java unhandled
@@ -146,6 +154,25 @@ public final class GooglePlayDeveloperReportingV1alpha1ErrorIssue extends com.go
146154
@com.google.api.client.util.Key
147155
private java.lang.String type;
148156

157+
/**
158+
* List of annotations for an issue. Annotations provide additional information that may help in
159+
* diagnosing and fixing the issue.
160+
* @return value or {@code null} for none
161+
*/
162+
public java.util.List<GooglePlayDeveloperReportingV1alpha1IssueAnnotation> getAnnotations() {
163+
return annotations;
164+
}
165+
166+
/**
167+
* List of annotations for an issue. Annotations provide additional information that may help in
168+
* diagnosing and fixing the issue.
169+
* @param annotations annotations or {@code null} for none
170+
*/
171+
public GooglePlayDeveloperReportingV1alpha1ErrorIssue setAnnotations(java.util.List<GooglePlayDeveloperReportingV1alpha1IssueAnnotation> annotations) {
172+
this.annotations = annotations;
173+
return this;
174+
}
175+
149176
/**
150177
* Cause of the issue. Depending on the type this can be either: * APPLICATION_NOT_RESPONDING: the
151178
* type of ANR that occurred, e.g., 'Input dispatching timed out'. * CRASH: for Java unhandled
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
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.playdeveloperreporting.v1alpha1.model;
18+
19+
/**
20+
* Representation of an annotation message for an issue.
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 Developer Reporting 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 GooglePlayDeveloperReportingV1alpha1IssueAnnotation extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Contains the contents of the annotation message.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String body;
39+
40+
/**
41+
* Category that the annotation belongs to. An annotation will belong to a single category.
42+
* Example categories: "Potential fix", "Insight".
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String category;
47+
48+
/**
49+
* Title for the annotation.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.String title;
54+
55+
/**
56+
* Contains the contents of the annotation message.
57+
* @return value or {@code null} for none
58+
*/
59+
public java.lang.String getBody() {
60+
return body;
61+
}
62+
63+
/**
64+
* Contains the contents of the annotation message.
65+
* @param body body or {@code null} for none
66+
*/
67+
public GooglePlayDeveloperReportingV1alpha1IssueAnnotation setBody(java.lang.String body) {
68+
this.body = body;
69+
return this;
70+
}
71+
72+
/**
73+
* Category that the annotation belongs to. An annotation will belong to a single category.
74+
* Example categories: "Potential fix", "Insight".
75+
* @return value or {@code null} for none
76+
*/
77+
public java.lang.String getCategory() {
78+
return category;
79+
}
80+
81+
/**
82+
* Category that the annotation belongs to. An annotation will belong to a single category.
83+
* Example categories: "Potential fix", "Insight".
84+
* @param category category or {@code null} for none
85+
*/
86+
public GooglePlayDeveloperReportingV1alpha1IssueAnnotation setCategory(java.lang.String category) {
87+
this.category = category;
88+
return this;
89+
}
90+
91+
/**
92+
* Title for the annotation.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.lang.String getTitle() {
96+
return title;
97+
}
98+
99+
/**
100+
* Title for the annotation.
101+
* @param title title or {@code null} for none
102+
*/
103+
public GooglePlayDeveloperReportingV1alpha1IssueAnnotation setTitle(java.lang.String title) {
104+
this.title = title;
105+
return this;
106+
}
107+
108+
@Override
109+
public GooglePlayDeveloperReportingV1alpha1IssueAnnotation set(String fieldName, Object value) {
110+
return (GooglePlayDeveloperReportingV1alpha1IssueAnnotation) super.set(fieldName, value);
111+
}
112+
113+
@Override
114+
public GooglePlayDeveloperReportingV1alpha1IssueAnnotation clone() {
115+
return (GooglePlayDeveloperReportingV1alpha1IssueAnnotation) super.clone();
116+
}
117+
118+
}

clients/google-api-services-playdeveloperreporting/v1alpha1/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-playdeveloperreporting</artifactId>
11-
<version>v1alpha1-rev20240926-2.0.0</version>
12-
<name>Google Play Developer Reporting API v1alpha1-rev20240926-2.0.0</name>
11+
<version>v1alpha1-rev20241009-2.0.0</version>
12+
<name>Google Play Developer Reporting API v1alpha1-rev20241009-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-playdeveloperreporting/v1alpha1/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-playdeveloperreporting</artifactId>
25-
<version>v1alpha1-rev20240926-2.0.0</version>
25+
<version>v1alpha1-rev20241009-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-playdeveloperreporting:v1alpha1-rev20240926-2.0.0'
38+
implementation 'com.google.apis:google-api-services-playdeveloperreporting:v1alpha1-rev20241009-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-playdeveloperreporting/v1beta1/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-playdeveloperreporting</artifactId>
25-
<version>v1beta1-rev20240926-2.0.0</version>
25+
<version>v1beta1-rev20241009-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-playdeveloperreporting:v1beta1-rev20240926-2.0.0'
38+
implementation 'com.google.apis:google-api-services-playdeveloperreporting:v1beta1-rev20241009-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-playdeveloperreporting/v1beta1/2.0.0/com/google/api/services/playdeveloperreporting/v1beta1/model/GooglePlayDeveloperReportingV1beta1ErrorIssue.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,14 @@
3535
@SuppressWarnings("javadoc")
3636
public final class GooglePlayDeveloperReportingV1beta1ErrorIssue extends com.google.api.client.json.GenericJson {
3737

38+
/**
39+
* List of annotations for an issue. Annotations provide additional information that may help in
40+
* diagnosing and fixing the issue.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.util.List<GooglePlayDeveloperReportingV1beta1IssueAnnotation> annotations;
45+
3846
/**
3947
* Cause of the issue. Depending on the type this can be either: * APPLICATION_NOT_RESPONDING: the
4048
* type of ANR that occurred, e.g., 'Input dispatching timed out'. * CRASH: for Java unhandled
@@ -146,6 +154,25 @@ public final class GooglePlayDeveloperReportingV1beta1ErrorIssue extends com.goo
146154
@com.google.api.client.util.Key
147155
private java.lang.String type;
148156

157+
/**
158+
* List of annotations for an issue. Annotations provide additional information that may help in
159+
* diagnosing and fixing the issue.
160+
* @return value or {@code null} for none
161+
*/
162+
public java.util.List<GooglePlayDeveloperReportingV1beta1IssueAnnotation> getAnnotations() {
163+
return annotations;
164+
}
165+
166+
/**
167+
* List of annotations for an issue. Annotations provide additional information that may help in
168+
* diagnosing and fixing the issue.
169+
* @param annotations annotations or {@code null} for none
170+
*/
171+
public GooglePlayDeveloperReportingV1beta1ErrorIssue setAnnotations(java.util.List<GooglePlayDeveloperReportingV1beta1IssueAnnotation> annotations) {
172+
this.annotations = annotations;
173+
return this;
174+
}
175+
149176
/**
150177
* Cause of the issue. Depending on the type this can be either: * APPLICATION_NOT_RESPONDING: the
151178
* type of ANR that occurred, e.g., 'Input dispatching timed out'. * CRASH: for Java unhandled
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
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.playdeveloperreporting.v1beta1.model;
18+
19+
/**
20+
* Representation of an annotation message for an issue.
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 Developer Reporting 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 GooglePlayDeveloperReportingV1beta1IssueAnnotation extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Contains the contents of the annotation message.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String body;
39+
40+
/**
41+
* Category that the annotation belongs to. An annotation will belong to a single category.
42+
* Example categories: "Potential fix", "Insight".
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String category;
47+
48+
/**
49+
* Title for the annotation.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.String title;
54+
55+
/**
56+
* Contains the contents of the annotation message.
57+
* @return value or {@code null} for none
58+
*/
59+
public java.lang.String getBody() {
60+
return body;
61+
}
62+
63+
/**
64+
* Contains the contents of the annotation message.
65+
* @param body body or {@code null} for none
66+
*/
67+
public GooglePlayDeveloperReportingV1beta1IssueAnnotation setBody(java.lang.String body) {
68+
this.body = body;
69+
return this;
70+
}
71+
72+
/**
73+
* Category that the annotation belongs to. An annotation will belong to a single category.
74+
* Example categories: "Potential fix", "Insight".
75+
* @return value or {@code null} for none
76+
*/
77+
public java.lang.String getCategory() {
78+
return category;
79+
}
80+
81+
/**
82+
* Category that the annotation belongs to. An annotation will belong to a single category.
83+
* Example categories: "Potential fix", "Insight".
84+
* @param category category or {@code null} for none
85+
*/
86+
public GooglePlayDeveloperReportingV1beta1IssueAnnotation setCategory(java.lang.String category) {
87+
this.category = category;
88+
return this;
89+
}
90+
91+
/**
92+
* Title for the annotation.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.lang.String getTitle() {
96+
return title;
97+
}
98+
99+
/**
100+
* Title for the annotation.
101+
* @param title title or {@code null} for none
102+
*/
103+
public GooglePlayDeveloperReportingV1beta1IssueAnnotation setTitle(java.lang.String title) {
104+
this.title = title;
105+
return this;
106+
}
107+
108+
@Override
109+
public GooglePlayDeveloperReportingV1beta1IssueAnnotation set(String fieldName, Object value) {
110+
return (GooglePlayDeveloperReportingV1beta1IssueAnnotation) super.set(fieldName, value);
111+
}
112+
113+
@Override
114+
public GooglePlayDeveloperReportingV1beta1IssueAnnotation clone() {
115+
return (GooglePlayDeveloperReportingV1beta1IssueAnnotation) super.clone();
116+
}
117+
118+
}

clients/google-api-services-playdeveloperreporting/v1beta1/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-playdeveloperreporting</artifactId>
11-
<version>v1beta1-rev20240926-2.0.0</version>
12-
<name>Google Play Developer Reporting API v1beta1-rev20240926-2.0.0</name>
11+
<version>v1beta1-rev20241009-2.0.0</version>
12+
<name>Google Play Developer Reporting API v1beta1-rev20241009-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)