Show / Hide Table of Contents

Class UpdateRowRequest

Request message for TablesService.UpdateRow.

Inheritance
System.Object
UpdateRowRequest
Implements
Google.Protobuf.IMessage<UpdateRowRequest>
System.IEquatable<UpdateRowRequest>
Google.Protobuf.IDeepCloneable<UpdateRowRequest>
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 UpdateRowRequest : IMessage<UpdateRowRequest>, IEquatable<UpdateRowRequest>, IDeepCloneable<UpdateRowRequest>, IBufferMessage, IMessage

Constructors

UpdateRowRequest()

Declaration
public UpdateRowRequest()

UpdateRowRequest(UpdateRowRequest)

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

Properties

Row

Required. The row to update.

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

UpdateMask

The list of fields to update.

Declaration
public FieldMask UpdateMask { get; set; }
Property Value
Type Description
Google.Protobuf.WellKnownTypes.FieldMask

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