class Google::Apis::AdmobV1beta::LocalizationSettings
Localization settings for reports, such as currency and language. It affects how metrics are calculated.
Attributes
currency_code[RW]
Currency code of the earning related metrics, which is the 3-letter code defined in ISO 4217. The daily average rate is used for the currency conversion. Defaults to the account currency code if unspecified. Corresponds to the JSON property `currencyCode` @return [String]
language_code[RW]
Language used for any localized text, such as some dimension value display labels. The language tag defined in the IETF BCP47. Defaults to 'en-US' if unspecified. Corresponds to the JSON property `languageCode` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/admob_v1beta/classes.rb, line 510 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 515 def update!(**args) @currency_code = args[:currency_code] if args.key?(:currency_code) @language_code = args[:language_code] if args.key?(:language_code) end