class Google::Apis::AnalyticsreportingV4::ReportRow

A row in the report.

Attributes

dimensions[RW]

List of requested dimensions. Corresponds to the JSON property `dimensions` @return [Array<String>]

metrics[RW]

List of metrics for each requested DateRange. Corresponds to the JSON property `metrics` @return [Array<Google::Apis::AnalyticsreportingV4::DateRangeValues>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analyticsreporting_v4/classes.rb, line 1446
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 1451
def update!(**args)
  @dimensions = args[:dimensions] if args.key?(:dimensions)
  @metrics = args[:metrics] if args.key?(:metrics)
end