class Google::Apis::YoutubeAnalyticsV1::ResultTable::ColumnHeader

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 generated/google/apis/youtube_analytics_v1/classes.rb, line 532
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/youtube_analytics_v1/classes.rb, line 537
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