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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Column

Returns a new instance of Column



665
666
667
# File 'generated/google/apis/analytics_v3/classes.rb', line 665

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>)


653
654
655
# File 'generated/google/apis/analytics_v3/classes.rb', line 653

def attributes
  @attributes
end

#idString

Column id. Corresponds to the JSON property id

Returns:

  • (String)


658
659
660
# File 'generated/google/apis/analytics_v3/classes.rb', line 658

def id
  @id
end

#kindString

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

Returns:

  • (String)


663
664
665
# File 'generated/google/apis/analytics_v3/classes.rb', line 663

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



670
671
672
673
674
# File 'generated/google/apis/analytics_v3/classes.rb', line 670

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