Skip to content

Commit 96e7345

Browse files
1 parent c4ebce7 commit 96e7345

File tree

5 files changed

+42
-7
lines changed

5 files changed

+42
-7
lines changed

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

clients/google-api-services-chat/v1/2.0.0/com/google/api/services/chat/v1/model/DeprecatedEvent.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,12 @@
2323
* interactions). In addition to receiving events from user interactions, Chat apps can receive
2424
* events about changes to spaces, such as when a new member is added to a space. To learn about
2525
* space events, see [Work with events from Google
26-
* Chat](https://developers.google.com/workspace/chat/events-overview).
26+
* Chat](https://developers.google.com/workspace/chat/events-overview). Note: This event is only
27+
* used for [Chat interaction events](https://developers.google.com/workspace/chat/receive-respond-
28+
* interactions). If your Chat app is built as a [Google Workspace add-
29+
* on](https://developers.google.com/workspace/add-ons/chat/build), see [Chat event
30+
* objects](https://developers.google.com/workspace/add-ons/concepts/event-objects#chat-event-
31+
* object) in the add-ons documentation.
2732
*
2833
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2934
* transmitted over HTTP when working with the Google Chat API. For a detailed explanation see:

clients/google-api-services-chat/v1/2.0.0/com/google/api/services/chat/v1/model/GoogleAppsCardV1SelectionInput.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,15 @@ public final class GoogleAppsCardV1SelectionInput extends com.google.api.client.
4646
@com.google.api.client.util.Key
4747
private GoogleAppsCardV1Action externalDataSource;
4848

49+
/**
50+
* Optional. Text that appears below the selection input field meant to assist users by prompting
51+
* them to enter a certain value. This text is always visible. Only supported by Google Workspace
52+
* Workflows, but not Google Chat API or Google Workspace Add-ons.
53+
* The value may be {@code null}.
54+
*/
55+
@com.google.api.client.util.Key
56+
private java.lang.String hintText;
57+
4958
/**
5059
* An array of selectable items. For example, an array of radio buttons or checkboxes. Supports up
5160
* to 100 items.
@@ -135,6 +144,27 @@ public GoogleAppsCardV1SelectionInput setExternalDataSource(GoogleAppsCardV1Acti
135144
return this;
136145
}
137146

147+
/**
148+
* Optional. Text that appears below the selection input field meant to assist users by prompting
149+
* them to enter a certain value. This text is always visible. Only supported by Google Workspace
150+
* Workflows, but not Google Chat API or Google Workspace Add-ons.
151+
* @return value or {@code null} for none
152+
*/
153+
public java.lang.String getHintText() {
154+
return hintText;
155+
}
156+
157+
/**
158+
* Optional. Text that appears below the selection input field meant to assist users by prompting
159+
* them to enter a certain value. This text is always visible. Only supported by Google Workspace
160+
* Workflows, but not Google Chat API or Google Workspace Add-ons.
161+
* @param hintText hintText or {@code null} for none
162+
*/
163+
public GoogleAppsCardV1SelectionInput setHintText(java.lang.String hintText) {
164+
this.hintText = hintText;
165+
return this;
166+
}
167+
138168
/**
139169
* An array of selectable items. For example, an array of radio buttons or checkboxes. Supports up
140170
* to 100 items.

clients/google-api-services-chat/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-chat</artifactId>
11-
<version>v1-rev20250619-2.0.0</version>
12-
<name>Google Chat API v1-rev20250619-2.0.0</name>
11+
<version>v1-rev20250706-2.0.0</version>
12+
<name>Google Chat API v1-rev20250706-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)