Show / Hide Table of Contents

Class CreateRowRequest

Request message for TablesService.CreateRow.

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

Constructors

CreateRowRequest()

Declaration
public CreateRowRequest()

CreateRowRequest(CreateRowRequest)

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

Properties

Parent

Required. The parent table where this row will be created. Format: tables/{table}

Declaration
public string Parent { get; set; }
Property Value
Type Description
System.String

Row

Required. The row to create.

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

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