class Google::Apis::AdmobV1::ReportHeader

Groups data helps to treat the generated report. Always sent as a first message in the stream response.

Attributes

date_range[RW]

Specification of a single date range. Both dates are inclusive. Corresponds to the JSON property `dateRange` @return [Google::Apis::AdmobV1::DateRange]

localization_settings[RW]

Localization settings for reports, such as currency and language. It affects how metrics are calculated. Corresponds to the JSON property `localizationSettings` @return [Google::Apis::AdmobV1::LocalizationSettings]

reporting_time_zone[RW]

The report time zone. The value is a time-zone ID as specified by the CLDR project, for example, “America/Los_Angeles”. Corresponds to the JSON property `reportingTimeZone` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/admob_v1/classes.rb, line 893
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_v1/classes.rb, line 898
def update!(**args)
  @date_range = args[:date_range] if args.key?(:date_range)
  @localization_settings = args[:localization_settings] if args.key?(:localization_settings)
  @reporting_time_zone = args[:reporting_time_zone] if args.key?(:reporting_time_zone)
end