Show / Hide Table of Contents

Class GetRowRequest

Request message for TablesService.GetRow.

Inheritance
System.Object
GetRowRequest
Implements
Google.Protobuf.IMessage<GetRowRequest>
System.IEquatable<GetRowRequest>
Google.Protobuf.IDeepCloneable<GetRowRequest>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Area120.Tables.V1Alpha1
Assembly: Google.Area120.Tables.V1Alpha1.dll
Syntax
public sealed class GetRowRequest : IMessage<GetRowRequest>, IEquatable<GetRowRequest>, IDeepCloneable<GetRowRequest>, IBufferMessage, IMessage

Constructors

GetRowRequest()

Declaration
public GetRowRequest()

GetRowRequest(GetRowRequest)

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

Properties

Name

Required. The name of the row to retrieve. Format: tables/{table}/rows/{row}

Declaration
public string Name { get; set; }
Property Value
Type Description
System.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
Back to top