Class TableDataInsertAllRequest.RowsData
The rows to insert.
Inheritance
System.Object
TableDataInsertAllRequest.RowsData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class 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 |
---|---|
System.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<System.String, System.Object> |