Show / Hide Table of Contents

Class TableDataInsertAllResponse.InsertErrorsData

An array of errors for rows that were not inserted.

Inheritance
System.Object
TableDataInsertAllResponse.InsertErrorsData
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 InsertErrorsData

Properties

Errors

Error information for the row indicated by the index property.

Declaration
[JsonProperty("errors")]
public virtual IList<ErrorProto> Errors { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ErrorProto>

Index

The index of the row that error applies to.

Declaration
[JsonProperty("index")]
public virtual long? Index { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
In This Article
Back to top