Show / Hide Table of Contents

Class ListSectionItemsRequest

Request message for listing section items.

Inheritance
object
ListSectionItemsRequest
Implements
IPageRequest
IMessage<ListSectionItemsRequest>
IEquatable<ListSectionItemsRequest>
IDeepCloneable<ListSectionItemsRequest>
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 ListSectionItemsRequest : IPageRequest, IMessage<ListSectionItemsRequest>, IEquatable<ListSectionItemsRequest>, IDeepCloneable<ListSectionItemsRequest>, IBufferMessage, IMessage

Constructors

ListSectionItemsRequest()

Declaration
public ListSectionItemsRequest()

ListSectionItemsRequest(ListSectionItemsRequest)

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

Properties

Filter

Optional. A query filter.

Currently only supports filtering by space.

For example, space = spaces/{space}.

Invalid queries are rejected with an INVALID_ARGUMENT error.

Declaration
public string Filter { get; set; }
Property Value
Type Description
string

PageSize

Optional. The maximum number of section items to return. The service may return fewer than this value.

If unspecified, at most 10 section items will be returned.

The maximum value is 100. If you use a value more than 100, it's automatically changed to 100.

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 section items call. Provide this to retrieve the subsequent page.

When paginating, all other parameters provided should match the call that provided the page token. Passing different values to the other parameters might lead to unexpected results.

Declaration
public string PageToken { get; set; }
Property Value
Type Description
string
Implements
IPageRequest.PageToken

Parent

Required. The parent, which is the section resource name that owns this collection of section items. Only supports listing section items for the calling user.

When you're filtering by space, use the wildcard - to search across all sections. For example, users/{user}/sections/-.

Format: users/{user}/sections/{section}

Declaration
public string Parent { get; set; }
Property Value
Type Description
string

ParentAsSectionName

SectionName-typed view over the Parent resource name property.

Declaration
public SectionName ParentAsSectionName { get; set; }
Property Value
Type Description
SectionName
In this article
Back to top Generated by DocFX