class Google::Apis::FusiontablesV2::Import
Represents an import request.
Attributes
kind[RW]
The kind of item this is. For an import, this is always fusiontables#import. Corresponds to the JSON property `kind` @return [String]
num_rows_received[RW]
The number of rows received from the import request. Corresponds to the JSON property `numRowsReceived` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/fusiontables_v2/classes.rb, line 299 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/fusiontables_v2/classes.rb, line 304 def update!(**args) @kind = args[:kind] if args.key?(:kind) @num_rows_received = args[:num_rows_received] if args.key?(:num_rows_received) end