public class HangoutsChat.Users.Spaces extends Object
| Modifier and Type | Class and Description |
|---|---|
class |
HangoutsChat.Users.Spaces.GetSpaceReadState |
class |
HangoutsChat.Users.Spaces.SpaceNotificationSetting
The "spaceNotificationSetting" collection of methods.
|
class |
HangoutsChat.Users.Spaces.Threads
The "threads" collection of methods.
|
class |
HangoutsChat.Users.Spaces.UpdateSpaceReadState |
| Constructor and Description |
|---|
Spaces() |
| Modifier and Type | Method and Description |
|---|---|
HangoutsChat.Users.Spaces.GetSpaceReadState |
getSpaceReadState(String name)
Returns details about a user's read state within a space, used to identify read and unread
messages.
|
HangoutsChat.Users.Spaces.SpaceNotificationSetting |
spaceNotificationSetting()
An accessor for creating requests from the SpaceNotificationSetting collection.
|
HangoutsChat.Users.Spaces.Threads |
threads()
An accessor for creating requests from the Threads collection.
|
HangoutsChat.Users.Spaces.UpdateSpaceReadState |
updateSpaceReadState(String name,
SpaceReadState content)
Updates a user's read state within a space, used to identify read and unread messages.
|
public HangoutsChat.Users.Spaces.GetSpaceReadState getSpaceReadState(String name) throws IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.name - Required. Resource name of the space read state to retrieve. Only supports getting read state for
the calling user. To refer to the calling user, set one of the following: - The `me`
alias. For example, `users/me/spaces/{space}/spaceReadState`. - Their Workspace email
address. For example, `users/user@example.com/spaces/{space}/spaceReadState`. - Their user
id. For example, `users/123456789/spaces/{space}/spaceReadState`. Format:
users/{user}/spaces/{space}/spaceReadStateIOExceptionpublic HangoutsChat.Users.Spaces.UpdateSpaceReadState updateSpaceReadState(String name, SpaceReadState content) throws IOException
AbstractGoogleClientRequest.execute() method to invoke the remote
operation.name - Resource name of the space read state. Format: `users/{user}/spaces/{space}/spaceReadState`content - the SpaceReadStateIOExceptionpublic HangoutsChat.Users.Spaces.SpaceNotificationSetting spaceNotificationSetting()
The typical use is:
HangoutsChat chat = new HangoutsChat(...);HangoutsChat.SpaceNotificationSetting.List request = chat.spaceNotificationSetting().list(parameters ...)
public HangoutsChat.Users.Spaces.Threads threads()
The typical use is:
HangoutsChat chat = new HangoutsChat(...);HangoutsChat.Threads.List request = chat.threads().list(parameters ...)
Copyright © 2011–2025 Google. All rights reserved.