class Google::Apis::BigqueryV2::InsertAllTableDataRequest::Row

Attributes

insert_id[RW]
Optional

A unique ID for each row. BigQuery uses this property to detect

duplicate insertion requests on a best-effort basis. Corresponds to the JSON property `insertId` @return [String]

json[RW]

Represents a single JSON object. Corresponds to the JSON property `json` @return [Hash<String,Object>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 6482
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/bigquery_v2/classes.rb, line 6487
def update!(**args)
  @insert_id = args[:insert_id] if args.key?(:insert_id)
  @json = args[:json] if args.key?(:json)
end