Class: Google::Apis::AdmobV1beta::GenerateNetworkReportRequest

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

Overview

Request to generate an AdMob Network report.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GenerateNetworkReportRequest

Returns a new instance of GenerateNetworkReportRequest.



741
742
743
# File 'lib/google/apis/admob_v1beta/classes.rb', line 741

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

Instance Attribute Details

#report_specGoogle::Apis::AdmobV1beta::NetworkReportSpec

The specification for generating an AdMob Network report. For example, the specification to get clicks and estimated earnings for only the 'US' and 'CN' countries can look like the following example: 'date_range': 'start_date': 'year': 2021, 'month': 9, 'day': 1, 'end_date': 'year': 2021, 'month': 9, ' day': 30 , 'dimensions': ['DATE', 'APP', 'COUNTRY'], 'metrics': ['CLICKS', ' ESTIMATED_EARNINGS'], 'dimension_filters': [ 'dimension': 'COUNTRY', ' matches_any': 'values': ['value': 'US', 'value': 'CN'] ], ' sort_conditions': ['dimension':'APP', order: 'ASCENDING','metric':'CLICKS' , order: 'DESCENDING'], 'localization_settings': 'currency_code': 'USD', ' language_code': 'en-US' For a better understanding, you can treat the preceding specification like the following pseudo SQL: SELECT DATE, APP, COUNTRY, CLICKS, ESTIMATED_EARNINGS FROM NETWORK_REPORT WHERE DATE >= '2021-09- 01' AND DATE <= '2021-09-30' AND COUNTRY IN ('US', 'CN') GROUP BY DATE, APP, COUNTRY ORDER BY APP ASC, CLICKS DESC; Corresponds to the JSON property reportSpec



739
740
741
# File 'lib/google/apis/admob_v1beta/classes.rb', line 739

def report_spec
  @report_spec
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



746
747
748
# File 'lib/google/apis/admob_v1beta/classes.rb', line 746

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