Class: Google::Apis::AdmobV1::ReportRow

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

Overview

A row of the returning report.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ReportRow

Returns a new instance of ReportRow.



835
836
837
# File 'generated/google/apis/admob_v1/classes.rb', line 835

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

Instance Attribute Details

#dimension_valuesHash<String,Google::Apis::AdmobV1::ReportRowDimensionValue>

Map of dimension values in a row, with keys as enum name of the dimensions. Corresponds to the JSON property dimensionValues



826
827
828
# File 'generated/google/apis/admob_v1/classes.rb', line 826

def dimension_values
  @dimension_values
end

#metric_valuesHash<String,Google::Apis::AdmobV1::ReportRowMetricValue>

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



833
834
835
# File 'generated/google/apis/admob_v1/classes.rb', line 833

def metric_values
  @metric_values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



840
841
842
843
# File 'generated/google/apis/admob_v1/classes.rb', line 840

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