Skip to content

Commit 9b96d66

Browse files
1 parent 15ebdb1 commit 9b96d66

File tree

4 files changed

+36
-9
lines changed

4 files changed

+36
-9
lines changed

clients/google-api-services-sheets/v4/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-sheets</artifactId>
25-
<version>v4-rev20250509-2.0.0</version>
25+
<version>v4-rev20250513-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-sheets:v4-rev20250509-2.0.0'
38+
implementation 'com.google.apis:google-api-services-sheets:v4-rev20250513-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-sheets/v4/2.0.0/com/google/api/services/sheets/v4/model/BandedRange.java

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,20 @@
3030
public final class BandedRange extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* The ID of the banded range.
33+
* The ID of the banded range. If unset, refer to banded_range_reference.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
3737
private java.lang.Integer bandedRangeId;
3838

39+
/**
40+
* Output only. The reference of the banded range, used to identify the ID that is not supported
41+
* by the banded_range_id.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String bandedRangeReference;
46+
3947
/**
4048
* Properties for column bands. These properties are applied on a column- by-column basis
4149
* throughout all the columns in the range. At least one of row_properties or column_properties
@@ -61,22 +69,41 @@ public final class BandedRange extends com.google.api.client.json.GenericJson {
6169
private BandingProperties rowProperties;
6270

6371
/**
64-
* The ID of the banded range.
72+
* The ID of the banded range. If unset, refer to banded_range_reference.
6573
* @return value or {@code null} for none
6674
*/
6775
public java.lang.Integer getBandedRangeId() {
6876
return bandedRangeId;
6977
}
7078

7179
/**
72-
* The ID of the banded range.
80+
* The ID of the banded range. If unset, refer to banded_range_reference.
7381
* @param bandedRangeId bandedRangeId or {@code null} for none
7482
*/
7583
public BandedRange setBandedRangeId(java.lang.Integer bandedRangeId) {
7684
this.bandedRangeId = bandedRangeId;
7785
return this;
7886
}
7987

88+
/**
89+
* Output only. The reference of the banded range, used to identify the ID that is not supported
90+
* by the banded_range_id.
91+
* @return value or {@code null} for none
92+
*/
93+
public java.lang.String getBandedRangeReference() {
94+
return bandedRangeReference;
95+
}
96+
97+
/**
98+
* Output only. The reference of the banded range, used to identify the ID that is not supported
99+
* by the banded_range_id.
100+
* @param bandedRangeReference bandedRangeReference or {@code null} for none
101+
*/
102+
public BandedRange setBandedRangeReference(java.lang.String bandedRangeReference) {
103+
this.bandedRangeReference = bandedRangeReference;
104+
return this;
105+
}
106+
80107
/**
81108
* Properties for column bands. These properties are applied on a column- by-column basis
82109
* throughout all the columns in the range. At least one of row_properties or column_properties

clients/google-api-services-sheets/v4/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-sheets</artifactId>
11-
<version>v4-rev20250509-2.0.0</version>
12-
<name>Google Sheets API v4-rev20250509-2.0.0</name>
11+
<version>v4-rev20250513-2.0.0</version>
12+
<name>Google Sheets API v4-rev20250513-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-sheets/v4/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-sheets</artifactId>
25-
<version>v4-rev20250509-2.0.0</version>
25+
<version>v4-rev20250513-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-sheets:v4-rev20250509-2.0.0'
38+
implementation 'com.google.apis:google-api-services-sheets:v4-rev20250513-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)