Class: Google::Apis::AnalyticsV3::RealtimeData::ColumnHeader

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/analytics_v3/classes.rb,
generated/google/apis/analytics_v3/representations.rb,
generated/google/apis/analytics_v3/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ColumnHeader

Returns a new instance of ColumnHeader.



4286
4287
4288
# File 'generated/google/apis/analytics_v3/classes.rb', line 4286

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#column_typeString

Column Type. Either DIMENSION or METRIC. Corresponds to the JSON property columnType

Returns:

  • (String)


4272
4273
4274
# File 'generated/google/apis/analytics_v3/classes.rb', line 4272

def column_type
  @column_type
end

#data_typeString

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

Returns:

  • (String)


4279
4280
4281
# File 'generated/google/apis/analytics_v3/classes.rb', line 4279

def data_type
  @data_type
end

#nameString

Column name. Corresponds to the JSON property name

Returns:

  • (String)


4284
4285
4286
# File 'generated/google/apis/analytics_v3/classes.rb', line 4284

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4291
4292
4293
4294
4295
# File 'generated/google/apis/analytics_v3/classes.rb', line 4291

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