Class: Google::Apis::AnalyticsV3::GaData::DataTable::Col
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsV3::GaData::DataTable::Col
- 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
-
#id ⇒ String
Corresponds to the JSON property
id
. -
#label ⇒ String
Corresponds to the JSON property
label
. -
#type ⇒ String
Corresponds to the JSON property
type
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Col
constructor
A new instance of Col.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
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
#id ⇒ String
Corresponds to the JSON property id
2683 2684 2685 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 2683 def id @id end |
#label ⇒ String
Corresponds to the JSON property label
2688 2689 2690 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 2688 def label @label end |
#type ⇒ String
Corresponds to the JSON property type
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 |