class Google::Apis::FusiontablesV2::Column::BaseColumn
Identifier of the base column. If present, this column is derived from the specified base column.
Attributes
column_id[RW]
The id of the column in the base table from which this column is derived. Corresponds to the JSON property `columnId` @return [Fixnum]
table_index[RW]
Offset to the entry in the list of base tables in the table definition. Corresponds to the JSON property `tableIndex` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/fusiontables_v2/classes.rb, line 203 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 208 def update!(**args) @column_id = args[:column_id] if args.key?(:column_id) @table_index = args[:table_index] if args.key?(:table_index) end