Class: Google::Apis::AnalyticsV3::Columns
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsV3::Columns
- 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
Lists columns (dimensions and metrics) for a particular report type.
Instance Attribute Summary collapse
-
#attribute_names ⇒ Array<String>
List of attributes names returned by columns.
-
#etag ⇒ String
Etag of collection.
-
#items ⇒ Array<Google::Apis::AnalyticsV3::Column>
List of columns for a report type.
-
#kind ⇒ String
Collection type.
-
#total_results ⇒ Fixnum
Total number of columns returned in the response.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Columns
constructor
A new instance of Columns.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Columns
Returns a new instance of Columns
613 614 615 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 613 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attribute_names ⇒ Array<String>
List of attributes names returned by columns.
Corresponds to the JSON property attributeNames
590 591 592 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 590 def attribute_names @attribute_names end |
#etag ⇒ String
Etag of collection. This etag can be compared with the last response etag to
check if response has changed.
Corresponds to the JSON property etag
596 597 598 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 596 def etag @etag end |
#items ⇒ Array<Google::Apis::AnalyticsV3::Column>
List of columns for a report type.
Corresponds to the JSON property items
601 602 603 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 601 def items @items end |
#kind ⇒ String
Collection type.
Corresponds to the JSON property kind
606 607 608 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 606 def kind @kind end |
#total_results ⇒ Fixnum
Total number of columns returned in the response.
Corresponds to the JSON property totalResults
611 612 613 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 611 def total_results @total_results end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
618 619 620 621 622 623 624 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 618 def update!(**args) @attribute_names = args[:attribute_names] if args.key?(:attribute_names) @etag = args[:etag] if args.key?(:etag) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) @total_results = args[:total_results] if args.key?(:total_results) end |