Class TableDataInsertAllRequest.RowsData
The rows to insert.
Inheritance
object
TableDataInsertAllRequest.RowsData
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class TableDataInsertAllRequest.RowsData
Properties
InsertId
[Optional] A unique ID for each row. BigQuery uses this property to detect duplicate insertion requests on a best-effort basis.
Declaration
[JsonProperty("insertId")]
public virtual string InsertId { get; set; }
Property Value
Type | Description |
---|---|
string |
Json
[Required] A JSON object that contains a row of data. The object's properties and values must match the destination table's schema.
Declaration
[JsonProperty("json")]
public virtual IDictionary<string, object> Json { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<TKey, TValue><string, object> |