Show / Hide Table of Contents

Class SpacesResource.ListRequest

Lists spaces the caller is a member of. Group chats and DMs aren't listed until the first message is sent. For an example, see List spaces. Supports the following types of authentication: - App authentication with the authorization scope: - https://www.googleapis.com/auth/chat.bot - User authentication with one of the following authorization scopes: - https://www.googleapis.com/auth/chat.spaces.readonly - https://www.googleapis.com/auth/chat.spaces To list all named spaces by Google Workspace organization, use the spaces.search() method using Workspace administrator privileges instead.

Inheritance
object
ClientServiceRequest
ClientServiceRequest<ListSpacesResponse>
HangoutsChatBaseServiceRequest<ListSpacesResponse>
SpacesResource.ListRequest
Implements
IClientServiceRequest<ListSpacesResponse>
IClientServiceRequest
Inherited Members
HangoutsChatBaseServiceRequest<ListSpacesResponse>.Xgafv
HangoutsChatBaseServiceRequest<ListSpacesResponse>.AccessToken
HangoutsChatBaseServiceRequest<ListSpacesResponse>.Alt
HangoutsChatBaseServiceRequest<ListSpacesResponse>.Callback
HangoutsChatBaseServiceRequest<ListSpacesResponse>.Fields
HangoutsChatBaseServiceRequest<ListSpacesResponse>.Key
HangoutsChatBaseServiceRequest<ListSpacesResponse>.OauthToken
HangoutsChatBaseServiceRequest<ListSpacesResponse>.PrettyPrint
HangoutsChatBaseServiceRequest<ListSpacesResponse>.QuotaUser
HangoutsChatBaseServiceRequest<ListSpacesResponse>.UploadType
HangoutsChatBaseServiceRequest<ListSpacesResponse>.UploadProtocol
ClientServiceRequest<ListSpacesResponse>.Execute()
ClientServiceRequest<ListSpacesResponse>.ExecuteAsStream()
ClientServiceRequest<ListSpacesResponse>.ExecuteAsync()
ClientServiceRequest<ListSpacesResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ListSpacesResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ListSpacesResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ListSpacesResponse>.CreateRequest(bool?)
ClientServiceRequest<ListSpacesResponse>.GenerateRequestUri()
ClientServiceRequest<ListSpacesResponse>.GetBody()
ClientServiceRequest<ListSpacesResponse>.GetDefaultETagAction(string)
ClientServiceRequest<ListSpacesResponse>.ETagAction
ClientServiceRequest<ListSpacesResponse>.ModifyRequest
ClientServiceRequest<ListSpacesResponse>.ValidateParameters
ClientServiceRequest<ListSpacesResponse>.ApiVersion
ClientServiceRequest<ListSpacesResponse>.RequestParameters
ClientServiceRequest<ListSpacesResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.HangoutsChat.v1
Assembly: Google.Apis.HangoutsChat.v1.dll
Syntax
public class SpacesResource.ListRequest : HangoutsChatBaseServiceRequest<ListSpacesResponse>, IClientServiceRequest<ListSpacesResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService)

Constructs a new List request.

Declaration
public ListRequest(IClientService service)
Parameters
Type Name Description
IClientService service

Properties

Filter

Optional. A query filter. You can filter spaces by the space type (space_type). To filter by space type, you must specify valid enum value, such as SPACE or GROUP_CHAT (the space_type can't be SPACE_TYPE_UNSPECIFIED). To query for multiple space types, use the OR operator. For example, the following queries are valid:

space_type = "SPACE" spaceType =
"GROUP_CHAT" OR spaceType = "DIRECT_MESSAGE"

Invalid queries are rejected by the server with an INVALID_ARGUMENT error.

Declaration
[RequestParameter("filter", RequestParameterType.Query)]
public virtual string Filter { get; set; }
Property Value
Type Description
string

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
string
Overrides
ClientServiceRequest<ListSpacesResponse>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
string
Overrides
ClientServiceRequest<ListSpacesResponse>.MethodName

PageSize

Optional. The maximum number of spaces to return. The service might return fewer than this value. If unspecified, at most 100 spaces are returned. The maximum value is 1000. If you use a value more than 1000, it's automatically changed to 1000. Negative values return an INVALID_ARGUMENT error.

Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type Description
int?

PageToken

Optional. A page token, received from a previous list spaces call. Provide this parameter to retrieve the subsequent page. When paginating, the filter value should match the call that provided the page token. Passing a different value may lead to unexpected results.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type Description
string

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
string
Overrides
ClientServiceRequest<ListSpacesResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
HangoutsChatBaseServiceRequest<ListSpacesResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In this article
Back to top Generated by DocFX