public class HangoutsChat.Spaces
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
class |
HangoutsChat.Spaces.Get |
class |
HangoutsChat.Spaces.List |
class |
HangoutsChat.Spaces.Members
The "members" collection of methods.
|
class |
HangoutsChat.Spaces.Messages
The "messages" collection of methods.
|
Constructor and Description |
---|
Spaces() |
Modifier and Type | Method and Description |
---|---|
HangoutsChat.Spaces.Get |
get(java.lang.String name)
Returns a space.
|
HangoutsChat.Spaces.List |
list()
Lists spaces the caller is a member of.
|
HangoutsChat.Spaces.Members |
members()
An accessor for creating requests from the Members collection.
|
HangoutsChat.Spaces.Messages |
messages()
An accessor for creating requests from the Messages collection.
|
public HangoutsChat.Spaces.Get get(java.lang.String name) throws java.io.IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.name
- Required. Resource name of the space, in the form "spaces".
Example: spaces/AAAAMpdlehYjava.io.IOException
public HangoutsChat.Spaces.List list() throws java.io.IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.java.io.IOException
public HangoutsChat.Spaces.Members members()
The typical use is:
HangoutsChat chat = new HangoutsChat(...);
HangoutsChat.Members.List request = chat.members().list(parameters ...)
public HangoutsChat.Spaces.Messages messages()
The typical use is:
HangoutsChat chat = new HangoutsChat(...);
HangoutsChat.Messages.List request = chat.messages().list(parameters ...)