class Google::Apis::YoutubeAnalyticsV2::ResultTableColumnHeader
The description of a column of the result table.
Attributes
column_type[RW]
The type of the column (`DIMENSION` or `METRIC`). Corresponds to the JSON property `columnType` @return [String]
data_type[RW]
The type of the data in the column (`STRING`, `INTEGER`, `FLOAT`, etc.). Corresponds to the JSON property `dataType` @return [String]
name[RW]
The name of the dimension or metric. Corresponds to the JSON property `name` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/youtube_analytics_v2/classes.rb, line 492 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/youtube_analytics_v2/classes.rb, line 497 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