Show / Hide Table of Contents

Class ListSpacesRequest

A request to list the spaces the caller is a member of.

Inheritance
object
ListSpacesRequest
Implements
IPageRequest
IMessage<ListSpacesRequest>
IEquatable<ListSpacesRequest>
IDeepCloneable<ListSpacesRequest>
IBufferMessage
IMessage
Inherited Members
object.GetHashCode()
object.GetType()
object.ToString()
Namespace: Google.Apps.Chat.V1
Assembly: Google.Apps.Chat.V1.dll
Syntax
public sealed class ListSpacesRequest : IPageRequest, IMessage<ListSpacesRequest>, IEquatable<ListSpacesRequest>, IDeepCloneable<ListSpacesRequest>, IBufferMessage, IMessage

Constructors

ListSpacesRequest()

Declaration
public ListSpacesRequest()

ListSpacesRequest(ListSpacesRequest)

Declaration
public ListSpacesRequest(ListSpacesRequest other)
Parameters
Type Name Description
ListSpacesRequest other

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
public string Filter { get; set; }
Property Value
Type Description
string

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
public int PageSize { get; set; }
Property Value
Type Description
int
Implements
IPageRequest.PageSize

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
public string PageToken { get; set; }
Property Value
Type Description
string
Implements
IPageRequest.PageToken
In this article
Back to top Generated by DocFX