Class: Google::Apis::AnalyticsV3::Column

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

Overview

JSON template for a metadata column.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Column

Returns a new instance of Column.



571
572
573
# File 'generated/google/apis/analytics_v3/classes.rb', line 571

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

Instance Attribute Details

#attributesHash<String,String>

Map of attribute name and value for this column. Corresponds to the JSON property attributes

Returns:

  • (Hash<String,String>)


559
560
561
# File 'generated/google/apis/analytics_v3/classes.rb', line 559

def attributes
  @attributes
end

#idString

Column id. Corresponds to the JSON property id

Returns:

  • (String)


564
565
566
# File 'generated/google/apis/analytics_v3/classes.rb', line 564

def id
  @id
end

#kindString

Resource type for Analytics column. Corresponds to the JSON property kind

Returns:

  • (String)


569
570
571
# File 'generated/google/apis/analytics_v3/classes.rb', line 569

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



576
577
578
579
580
# File 'generated/google/apis/analytics_v3/classes.rb', line 576

def update!(**args)
  @attributes = args[:attributes] if args.key?(:attributes)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
end