Class Row
Assembly: Google.Area120.Tables.V1Alpha1.dll
Syntax
public sealed class Row : IMessage<Row>, IEquatable<Row>, IDeepCloneable<Row>, IBufferMessage, IMessage
Constructors
Row()
Declaration
Row(Row)
Declaration
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
RowName
RowName-typed view over the Name resource name property.
Declaration
public RowName RowName { get; set; }
Property Value
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