Class: Google::Apis::AnalyticsreportingV4::ReportRow

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/analyticsreporting_v4/classes.rb,
lib/google/apis/analyticsreporting_v4/representations.rb,
lib/google/apis/analyticsreporting_v4/representations.rb

Overview

A row in the report.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReportRow

Returns a new instance of ReportRow.



1452
1453
1454
# File 'lib/google/apis/analyticsreporting_v4/classes.rb', line 1452

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#dimensionsArray<String>

List of requested dimensions. Corresponds to the JSON property dimensions

Returns:

  • (Array<String>)


1445
1446
1447
# File 'lib/google/apis/analyticsreporting_v4/classes.rb', line 1445

def dimensions
  @dimensions
end

#metricsArray<Google::Apis::AnalyticsreportingV4::DateRangeValues>

List of metrics for each requested DateRange. Corresponds to the JSON property metrics



1450
1451
1452
# File 'lib/google/apis/analyticsreporting_v4/classes.rb', line 1450

def metrics
  @metrics
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1457
1458
1459
1460
# File 'lib/google/apis/analyticsreporting_v4/classes.rb', line 1457

def update!(**args)
  @dimensions = args[:dimensions] if args.key?(:dimensions)
  @metrics = args[:metrics] if args.key?(:metrics)
end