Show / Hide Table of Contents

Class Row

A single row in a table.

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

Constructors

Row()

Declaration
public Row()

Row(Row)

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

Properties

Name

The resource name of the row. Row names have the form tables/{table}/rows/{row}. The name is ignored when creating a row.

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

RowName

RowName-typed view over the Name resource name property.

Declaration
public RowName RowName { get; set; }
Property Value
Type Description
RowName

Values

The values of the row. This is a map of column key to value. Key is user entered name(default) or the internal column id based on the view in the request.

Declaration
public MapField<string, Value> Values { get; }
Property Value
Type Description
MapField<string, Value>
In this article
Back to top Generated by DocFX