Show / Hide Table of Contents

Class SearchSpacesResponse

Response with a list of spaces corresponding to the search spaces request.

Inheritance
object
SearchSpacesResponse
Implements
IPageResponse<Space>
IEnumerable<Space>
IEnumerable
IMessage<SearchSpacesResponse>
IEquatable<SearchSpacesResponse>
IDeepCloneable<SearchSpacesResponse>
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 SearchSpacesResponse : IPageResponse<Space>, IEnumerable<Space>, IEnumerable, IMessage<SearchSpacesResponse>, IEquatable<SearchSpacesResponse>, IDeepCloneable<SearchSpacesResponse>, IBufferMessage, IMessage

Constructors

SearchSpacesResponse()

Declaration
public SearchSpacesResponse()

SearchSpacesResponse(SearchSpacesResponse)

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

Properties

NextPageToken

A token that can be used to retrieve the next page. If this field is empty, there are no subsequent pages.

Declaration
public string NextPageToken { get; set; }
Property Value
Type Description
string
Implements
IPageResponse<TResource>.NextPageToken

Spaces

A page of the requested spaces.

Declaration
public RepeatedField<Space> Spaces { get; }
Property Value
Type Description
RepeatedField<Space>

TotalSize

The total number of spaces that match the query, across all pages. If the result is over 10,000 spaces, this value is an estimate.

Declaration
public int TotalSize { get; set; }
Property Value
Type Description
int

Methods

GetEnumerator()

Returns an enumerator that iterates through the resources in this response.

Declaration
public IEnumerator<Space> GetEnumerator()
Returns
Type Description
IEnumerator<Space>
Implements
IEnumerable<T>.GetEnumerator()
In this article
Back to top Generated by DocFX