class Google::Apis::AnalyticsV3::McfData::ColumnHeader
Attributes
column_type[RW]
Column
Type. Either DIMENSION or METRIC. Corresponds to the JSON property `columnType` @return [String]
data_type[RW]
Data type. Dimension and metric values data types such as INTEGER, DOUBLE, CURRENCY, MCF_SEQUENCE etc. Corresponds to the JSON property `dataType` @return [String]
name[RW]
Column
name. Corresponds to the JSON property `name` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/analytics_v3/classes.rb, line 3617 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/analytics_v3/classes.rb, line 3622 def update!(**args) @column_type = args[:column_type] if args.key?(:column_type) @data_type = args[:data_type] if args.key?(:data_type) @name = args[:name] if args.key?(:name) end