Class: Google::Apis::AnalyticsreportingV4::DateRangeValues
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsreportingV4::DateRangeValues
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/analyticsreporting_v4/classes.rb,
generated/google/apis/analyticsreporting_v4/representations.rb,
generated/google/apis/analyticsreporting_v4/representations.rb
Overview
Used to return a list of metrics for a single DateRange / dimension combination
Instance Attribute Summary collapse
-
#pivot_value_regions ⇒ Array<Google::Apis::AnalyticsreportingV4::PivotValueRegion>
The values of each pivot region.
-
#values ⇒ Array<String>
Each value corresponds to each Metric in the request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DateRangeValues
constructor
A new instance of DateRangeValues.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DateRangeValues
Returns a new instance of DateRangeValues.
332 333 334 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 332 def initialize(**args) update!(**args) end |
Instance Attribute Details
#pivot_value_regions ⇒ Array<Google::Apis::AnalyticsreportingV4::PivotValueRegion>
The values of each pivot region.
Corresponds to the JSON property pivotValueRegions
325 326 327 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 325 def pivot_value_regions @pivot_value_regions end |
#values ⇒ Array<String>
Each value corresponds to each Metric in the request.
Corresponds to the JSON property values
330 331 332 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 330 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
337 338 339 340 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 337 def update!(**args) @pivot_value_regions = args[:pivot_value_regions] if args.key?(:pivot_value_regions) @values = args[:values] if args.key?(:values) end |