class Google::Apis::AnalyticsV3::GaData::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 column headers have only STRING as the data type. Metric column headers have data types for metric values such as INTEGER, DOUBLE, CURRENCY 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 2640 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 2645 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