class Google::Apis::AnalyticsreportingV4::DateRangeValues

Used to return a list of metrics for a single DateRange / dimension combination

Attributes

pivot_value_regions[RW]

The values of each pivot region. Corresponds to the JSON property `pivotValueRegions` @return [Array<Google::Apis::AnalyticsreportingV4::PivotValueRegion>]

values[RW]

Each value corresponds to each Metric in the request. Corresponds to the JSON property `values` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analyticsreporting_v4/classes.rb, line 332
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/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