Skip to content

Commit 9bf622c

Browse files
1 parent 4d5ca90 commit 9bf622c

File tree

4 files changed

+39
-6
lines changed

4 files changed

+39
-6
lines changed

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

clients/google-api-services-docs/v1/2.0.0/com/google/api/services/docs/v1/model/TabProperties.java

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,16 @@
2929
@SuppressWarnings("javadoc")
3030
public final class TabProperties extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Optional. The emoji icon displayed with the tab. A valid emoji icon is represented by a non-
34+
* empty Unicode string. Any set of characters that don't represent a single emoji is invalid. If
35+
* an emoji is invalid, a 400 bad request error is returned. If this value is unset or empty, the
36+
* tab will display the default tab icon.
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.lang.String iconEmoji;
41+
3242
/**
3343
* The zero-based index of the tab within the parent.
3444
* The value may be {@code null}.
@@ -65,6 +75,29 @@ public final class TabProperties extends com.google.api.client.json.GenericJson
6575
@com.google.api.client.util.Key
6676
private java.lang.String title;
6777

78+
/**
79+
* Optional. The emoji icon displayed with the tab. A valid emoji icon is represented by a non-
80+
* empty Unicode string. Any set of characters that don't represent a single emoji is invalid. If
81+
* an emoji is invalid, a 400 bad request error is returned. If this value is unset or empty, the
82+
* tab will display the default tab icon.
83+
* @return value or {@code null} for none
84+
*/
85+
public java.lang.String getIconEmoji() {
86+
return iconEmoji;
87+
}
88+
89+
/**
90+
* Optional. The emoji icon displayed with the tab. A valid emoji icon is represented by a non-
91+
* empty Unicode string. Any set of characters that don't represent a single emoji is invalid. If
92+
* an emoji is invalid, a 400 bad request error is returned. If this value is unset or empty, the
93+
* tab will display the default tab icon.
94+
* @param iconEmoji iconEmoji or {@code null} for none
95+
*/
96+
public TabProperties setIconEmoji(java.lang.String iconEmoji) {
97+
this.iconEmoji = iconEmoji;
98+
return this;
99+
}
100+
68101
/**
69102
* The zero-based index of the tab within the parent.
70103
* @return value or {@code null} for none

clients/google-api-services-docs/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-docs</artifactId>
11-
<version>v1-rev20251008-2.0.0</version>
12-
<name>Google Docs API v1-rev20251008-2.0.0</name>
11+
<version>v1-rev20251013-2.0.0</version>
12+
<name>Google Docs API v1-rev20251013-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)