Skip to content

Commit ca7acfe

Browse files
1 parent 52c66f0 commit ca7acfe

File tree

7 files changed

+29
-23
lines changed

7 files changed

+29
-23
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-rev20241029-2.0.0</version>
25+
<version>v1-rev20241031-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-rev20241029-2.0.0'
38+
implementation 'com.google.apis:google-api-services-chat:v1-rev20241031-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3722,7 +3722,10 @@ public class Messages {
37223722
* displays the user as the message sender and attributes the Chat app to the message by displaying
37233723
* its name. The content of message can only contain text (`text`). ![Message sent with user
37243724
* authentication](https://developers.google.com/workspace/chat/images/message-user-auth.svg) The
3725-
* maximum message size, including the message contents, is 32,000 bytes.
3725+
* maximum message size, including the message contents, is 32,000 bytes. For
3726+
* [webhook](https://developers.google.com/workspace/chat/quickstart/webhooks) requests, the
3727+
* response doesn't contain the full message. The response only populates the `name` and
3728+
* `thread.name` fields in addition to the information that was in the request.
37263729
*
37273730
* Create a request for the method "messages.create".
37283731
*
@@ -3762,7 +3765,10 @@ public class Create extends HangoutsChatRequest<com.google.api.services.chat.v1.
37623765
* displays the user as the message sender and attributes the Chat app to the message by
37633766
* displaying its name. The content of message can only contain text (`text`). ![Message sent with
37643767
* user authentication](https://developers.google.com/workspace/chat/images/message-user-auth.svg)
3765-
* The maximum message size, including the message contents, is 32,000 bytes.
3768+
* The maximum message size, including the message contents, is 32,000 bytes. For
3769+
* [webhook](https://developers.google.com/workspace/chat/quickstart/webhooks) requests, the
3770+
* response doesn't contain the full message. The response only populates the `name` and
3771+
* `thread.name` fields in addition to the information that was in the request.
37663772
*
37673773
* Create a request for the method "messages.create".
37683774
*

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public final class Emoji extends com.google.api.client.json.GenericJson {
3737
private CustomEmoji customEmoji;
3838

3939
/**
40-
* A basic emoji represented by a unicode string.
40+
* Optional. A basic emoji represented by a unicode string.
4141
* The value may be {@code null}.
4242
*/
4343
@com.google.api.client.util.Key
@@ -61,15 +61,15 @@ public Emoji setCustomEmoji(CustomEmoji customEmoji) {
6161
}
6262

6363
/**
64-
* A basic emoji represented by a unicode string.
64+
* Optional. A basic emoji represented by a unicode string.
6565
* @return value or {@code null} for none
6666
*/
6767
public java.lang.String getUnicode() {
6868
return unicode;
6969
}
7070

7171
/**
72-
* A basic emoji represented by a unicode string.
72+
* Optional. A basic emoji represented by a unicode string.
7373
* @param unicode unicode or {@code null} for none
7474
*/
7575
public Emoji setUnicode(java.lang.String unicode) {

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

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

3232
/**
33-
* Emoji associated with the reactions.
33+
* Output only. Emoji associated with the reactions.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
3737
private Emoji emoji;
3838

3939
/**
40-
* The total number of reactions using the associated emoji.
40+
* Output only. The total number of reactions using the associated emoji.
4141
* The value may be {@code null}.
4242
*/
4343
@com.google.api.client.util.Key
4444
private java.lang.Integer reactionCount;
4545

4646
/**
47-
* Emoji associated with the reactions.
47+
* Output only. Emoji associated with the reactions.
4848
* @return value or {@code null} for none
4949
*/
5050
public Emoji getEmoji() {
5151
return emoji;
5252
}
5353

5454
/**
55-
* Emoji associated with the reactions.
55+
* Output only. Emoji associated with the reactions.
5656
* @param emoji emoji or {@code null} for none
5757
*/
5858
public EmojiReactionSummary setEmoji(Emoji emoji) {
@@ -61,15 +61,15 @@ public EmojiReactionSummary setEmoji(Emoji emoji) {
6161
}
6262

6363
/**
64-
* The total number of reactions using the associated emoji.
64+
* Output only. The total number of reactions using the associated emoji.
6565
* @return value or {@code null} for none
6666
*/
6767
public java.lang.Integer getReactionCount() {
6868
return reactionCount;
6969
}
7070

7171
/**
72-
* The total number of reactions using the associated emoji.
72+
* Output only. The total number of reactions using the associated emoji.
7373
* @param reactionCount reactionCount or {@code null} for none
7474
*/
7575
public EmojiReactionSummary setReactionCount(java.lang.Integer reactionCount) {

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

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

3232
/**
33-
* The emoji used in the reaction.
33+
* Required. The emoji used in the reaction.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
3737
private Emoji emoji;
3838

3939
/**
40-
* The resource name of the reaction. Format:
40+
* Identifier. The resource name of the reaction. Format:
4141
* `spaces/{space}/messages/{message}/reactions/{reaction}`
4242
* The value may be {@code null}.
4343
*/
@@ -52,15 +52,15 @@ public final class Reaction extends com.google.api.client.json.GenericJson {
5252
private User user;
5353

5454
/**
55-
* The emoji used in the reaction.
55+
* Required. The emoji used in the reaction.
5656
* @return value or {@code null} for none
5757
*/
5858
public Emoji getEmoji() {
5959
return emoji;
6060
}
6161

6262
/**
63-
* The emoji used in the reaction.
63+
* Required. The emoji used in the reaction.
6464
* @param emoji emoji or {@code null} for none
6565
*/
6666
public Reaction setEmoji(Emoji emoji) {
@@ -69,7 +69,7 @@ public Reaction setEmoji(Emoji emoji) {
6969
}
7070

7171
/**
72-
* The resource name of the reaction. Format:
72+
* Identifier. The resource name of the reaction. Format:
7373
* `spaces/{space}/messages/{message}/reactions/{reaction}`
7474
* @return value or {@code null} for none
7575
*/
@@ -78,7 +78,7 @@ public java.lang.String getName() {
7878
}
7979

8080
/**
81-
* The resource name of the reaction. Format:
81+
* Identifier. The resource name of the reaction. Format:
8282
* `spaces/{space}/messages/{message}/reactions/{reaction}`
8383
* @param name name or {@code null} for none
8484
*/

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-rev20241029-2.0.0</version>
12-
<name>Google Chat API v1-rev20241029-2.0.0</name>
11+
<version>v1-rev20241031-2.0.0</version>
12+
<name>Google Chat API v1-rev20241031-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-rev20241029-2.0.0</version>
25+
<version>v1-rev20241031-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-rev20241029-2.0.0'
38+
implementation 'com.google.apis:google-api-services-chat:v1-rev20241031-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)