class Google::Apis::AdmobV1beta::ReportRow

A row of the returning report.

Attributes

dimension_values[RW]

Map of dimension values in a row, with keys as enum name of the dimensions. Corresponds to the JSON property `dimensionValues` @return [Hash<String,Google::Apis::AdmobV1beta::ReportRowDimensionValue>]

metric_values[RW]

Map of metric values in a row, with keys as enum name of the metrics. If a metric being requested has no value returned, the map will not include it. Corresponds to the JSON property `metricValues` @return [Hash<String,Google::Apis::AdmobV1beta::ReportRowMetricValue>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/admob_v1beta/classes.rb, line 925
def update!(**args)
  @dimension_values = args[:dimension_values] if args.key?(:dimension_values)
  @metric_values = args[:metric_values] if args.key?(:metric_values)
end