Skip to content

Commit 0f26e41

Browse files
1 parent 80e0d41 commit 0f26e41

13 files changed

Lines changed: 463 additions & 120 deletions

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-rev20260327-2.0.0</version>
25+
<version>v1-rev20260405-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-rev20260327-2.0.0'
38+
implementation 'com.google.apis:google-api-services-chat:v1-rev20260405-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: 355 additions & 100 deletions
Large diffs are not rendered by default.
Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
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.chat.v1.model;
18+
19+
/**
20+
* A response containing group chat spaces with exactly the calling user and the requested users.
21+
* [Developer Preview](https://developers.google.com/workspace/preview):
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Google Chat API. For a detailed explanation 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 FindGroupChatsResponse extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* A token that you can send as `pageToken` to retrieve the next page of results. If empty, there
35+
* are no subsequent pages.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String nextPageToken;
40+
41+
/**
42+
* List of spaces in the requested (or first) page.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.util.List<Space> spaces;
47+
48+
/**
49+
* A token that you can send as `pageToken` to retrieve the next page of results. If empty, there
50+
* are no subsequent pages.
51+
* @return value or {@code null} for none
52+
*/
53+
public java.lang.String getNextPageToken() {
54+
return nextPageToken;
55+
}
56+
57+
/**
58+
* A token that you can send as `pageToken` to retrieve the next page of results. If empty, there
59+
* are no subsequent pages.
60+
* @param nextPageToken nextPageToken or {@code null} for none
61+
*/
62+
public FindGroupChatsResponse setNextPageToken(java.lang.String nextPageToken) {
63+
this.nextPageToken = nextPageToken;
64+
return this;
65+
}
66+
67+
/**
68+
* List of spaces in the requested (or first) page.
69+
* @return value or {@code null} for none
70+
*/
71+
public java.util.List<Space> getSpaces() {
72+
return spaces;
73+
}
74+
75+
/**
76+
* List of spaces in the requested (or first) page.
77+
* @param spaces spaces or {@code null} for none
78+
*/
79+
public FindGroupChatsResponse setSpaces(java.util.List<Space> spaces) {
80+
this.spaces = spaces;
81+
return this;
82+
}
83+
84+
@Override
85+
public FindGroupChatsResponse set(String fieldName, Object value) {
86+
return (FindGroupChatsResponse) super.set(fieldName, value);
87+
}
88+
89+
@Override
90+
public FindGroupChatsResponse clone() {
91+
return (FindGroupChatsResponse) super.clone();
92+
}
93+
94+
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* `users/{user}/sections/default-apps` 2. **Custom Sections:** These are sections created and
2626
* managed by the user. Creating a custom section using `CreateSection` **requires** a
2727
* `display_name`. Custom sections can be updated using `UpdateSection` and deleted using
28-
* `DeleteSection`. [Developer Preview](https://developers.google.com/workspace/preview).
28+
* `DeleteSection`.
2929
*
3030
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
3131
* 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/ListSectionItemsResponse.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package com.google.api.services.chat.v1.model;
1818

1919
/**
20-
* Response message for listing section items. [Developer
21-
* Preview](https://developers.google.com/workspace/preview).
20+
* Response message for listing section items.
2221
*
2322
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2423
* 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/ListSectionsResponse.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package com.google.api.services.chat.v1.model;
1818

1919
/**
20-
* Response message for listing sections. [Developer
21-
* Preview](https://developers.google.com/workspace/preview).
20+
* Response message for listing sections.
2221
*
2322
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2423
* 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/MoveSectionItemRequest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package com.google.api.services.chat.v1.model;
1818

1919
/**
20-
* Request message for moving a section item across sections. [Developer
21-
* Preview](https://developers.google.com/workspace/preview).
20+
* Request message for moving a section item across sections.
2221
*
2322
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2423
* 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/MoveSectionItemResponse.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package com.google.api.services.chat.v1.model;
1818

1919
/**
20-
* Response message for moving a section item. [Developer
21-
* Preview](https://developers.google.com/workspace/preview).
20+
* Response message for moving a section item.
2221
*
2322
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2423
* 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/PositionSectionRequest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package com.google.api.services.chat.v1.model;
1818

1919
/**
20-
* Request message for positioning a section. [Developer
21-
* Preview](https://developers.google.com/workspace/preview).
20+
* Request message for positioning a section.
2221
*
2322
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2423
* 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/PositionSectionResponse.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package com.google.api.services.chat.v1.model;
1818

1919
/**
20-
* Response message for positioning a section. [Developer
21-
* Preview](https://developers.google.com/workspace/preview).
20+
* Response message for positioning a section.
2221
*
2322
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2423
* transmitted over HTTP when working with the Google Chat API. For a detailed explanation see:

0 commit comments

Comments
 (0)