Class: Google::Apis::AnalyticsV3::GaData::DataTable::Col

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

Constructor Details

#initialize(**args) ⇒ Col

Returns a new instance of Col.



2695
2696
2697
# File 'generated/google/apis/analytics_v3/classes.rb', line 2695

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

Instance Attribute Details

#idString

Corresponds to the JSON property id

Returns:

  • (String)


2683
2684
2685
# File 'generated/google/apis/analytics_v3/classes.rb', line 2683

def id
  @id
end

#labelString

Corresponds to the JSON property label

Returns:

  • (String)


2688
2689
2690
# File 'generated/google/apis/analytics_v3/classes.rb', line 2688

def label
  @label
end

#typeString

Corresponds to the JSON property type

Returns:

  • (String)


2693
2694
2695
# File 'generated/google/apis/analytics_v3/classes.rb', line 2693

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2700
2701
2702
2703
2704
# File 'generated/google/apis/analytics_v3/classes.rb', line 2700

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