Skip to content

Commit 8e7ee75

Browse files
1 parent 176bdaf commit 8e7ee75

File tree

5 files changed

+112
-6
lines changed

5 files changed

+112
-6
lines changed

clients/google-api-services-searchconsole/v1/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-searchconsole</artifactId>
25-
<version>v1-rev20250409-2.0.0</version>
25+
<version>v1-rev20250713-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-searchconsole:v1-rev20250409-2.0.0'
38+
implementation 'com.google.apis:google-api-services-searchconsole:v1-rev20250713-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
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.searchconsole.v1.model;
18+
19+
/**
20+
* Model definition for Metadata.
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 Search Console API. For a detailed explanation
24+
* 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 Metadata extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String firstIncompleteDate;
38+
39+
/**
40+
* The value may be {@code null}.
41+
*/
42+
@com.google.api.client.util.Key
43+
private java.lang.String firstIncompleteHour;
44+
45+
/**
46+
* @return value or {@code null} for none
47+
*/
48+
public java.lang.String getFirstIncompleteDate() {
49+
return firstIncompleteDate;
50+
}
51+
52+
/**
53+
* @param firstIncompleteDate firstIncompleteDate or {@code null} for none
54+
*/
55+
public Metadata setFirstIncompleteDate(java.lang.String firstIncompleteDate) {
56+
this.firstIncompleteDate = firstIncompleteDate;
57+
return this;
58+
}
59+
60+
/**
61+
* @return value or {@code null} for none
62+
*/
63+
public java.lang.String getFirstIncompleteHour() {
64+
return firstIncompleteHour;
65+
}
66+
67+
/**
68+
* @param firstIncompleteHour firstIncompleteHour or {@code null} for none
69+
*/
70+
public Metadata setFirstIncompleteHour(java.lang.String firstIncompleteHour) {
71+
this.firstIncompleteHour = firstIncompleteHour;
72+
return this;
73+
}
74+
75+
@Override
76+
public Metadata set(String fieldName, Object value) {
77+
return (Metadata) super.set(fieldName, value);
78+
}
79+
80+
@Override
81+
public Metadata clone() {
82+
return (Metadata) super.clone();
83+
}
84+
85+
}

clients/google-api-services-searchconsole/v1/2.0.0/com/google/api/services/searchconsole/v1/model/SearchAnalyticsQueryResponse.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@
3131
@SuppressWarnings("javadoc")
3232
public final class SearchAnalyticsQueryResponse extends com.google.api.client.json.GenericJson {
3333

34+
/**
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private Metadata metadata;
39+
3440
/**
3541
* How the results were aggregated.
3642
* The value may be {@code null}.
@@ -51,6 +57,21 @@ public final class SearchAnalyticsQueryResponse extends com.google.api.client.js
5157
com.google.api.client.util.Data.nullOf(ApiDataRow.class);
5258
}
5359

60+
/**
61+
* @return value or {@code null} for none
62+
*/
63+
public Metadata getMetadata() {
64+
return metadata;
65+
}
66+
67+
/**
68+
* @param metadata metadata or {@code null} for none
69+
*/
70+
public SearchAnalyticsQueryResponse setMetadata(Metadata metadata) {
71+
this.metadata = metadata;
72+
return this;
73+
}
74+
5475
/**
5576
* How the results were aggregated.
5677
* @return value or {@code null} for none

clients/google-api-services-searchconsole/v1/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-searchconsole</artifactId>
11-
<version>v1-rev20250409-2.0.0</version>
12-
<name>Google Search Console API v1-rev20250409-2.0.0</name>
11+
<version>v1-rev20250713-2.0.0</version>
12+
<name>Google Search Console API v1-rev20250713-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-searchconsole/v1/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-searchconsole</artifactId>
25-
<version>v1-rev20250409-2.0.0</version>
25+
<version>v1-rev20250713-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-searchconsole:v1-rev20250409-2.0.0'
38+
implementation 'com.google.apis:google-api-services-searchconsole:v1-rev20250713-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)