Class ListRowsRequest
Request message for TablesService.ListRows.
Implements
Namespace: Google.Area120.Tables.V1Alpha1
Assembly: Google.Area120.Tables.V1Alpha1.dll
Syntax
public sealed class ListRowsRequest : IMessage<ListRowsRequest>, IEquatable<ListRowsRequest>, IDeepCloneable<ListRowsRequest>, IBufferMessage, IMessage, IPageRequest
Constructors
ListRowsRequest()
Declaration
public ListRowsRequest()
ListRowsRequest(ListRowsRequest)
Declaration
public ListRowsRequest(ListRowsRequest other)
Parameters
Type | Name | Description |
---|---|---|
ListRowsRequest | other |
Properties
Filter
Optional. Raw text query to search for in rows of the table. Special characters must be escaped. Logical operators and field specific filtering not supported.
Declaration
public string Filter { get; set; }
Property Value
Type | Description |
---|---|
string |
PageSize
The maximum number of rows to return. The service may return fewer than this value.
If unspecified, at most 50 rows are returned. The maximum value is 1,000; values above 1,000 are coerced to 1,000.
Declaration
public int PageSize { get; set; }
Property Value
Type | Description |
---|---|
int |
Implements
PageToken
A page token, received from a previous ListRows
call.
Provide this to retrieve the subsequent page.
When paginating, all other parameters provided to ListRows
must match
the call that provided the page token.
Declaration
public string PageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
Implements
Parent
Required. The parent table. Format: tables/{table}
Declaration
public string Parent { get; set; }
Property Value
Type | Description |
---|---|
string |
View
Optional. Column key to use for values in the row. Defaults to user entered name.
Declaration
public View View { get; set; }
Property Value
Type | Description |
---|---|
View |