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
2789 2790 2791 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 2789 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
Corresponds to the JSON property id
2777 2778 2779 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 2777 def id @id end |
#label ⇒ String
Corresponds to the JSON property label
2782 2783 2784 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 2782 def label @label end |
#type ⇒ String
Corresponds to the JSON property type
2787 2788 2789 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 2787 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2794 2795 2796 2797 2798 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 2794 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 |