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 generated/google/apis/analytics_v3/classes.rb, line 2538 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/analytics_v3/classes.rb, line 2543 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