class Google::Apis::AnalyticsdataV1beta::ResponseMetaData

Response's metadata carrying additional information about the report content.

Attributes

currency_code[RW]

The currency code used in this report. Intended to be used in formatting currency metrics like `purchaseRevenue` for visualization. If currency_code was specified in the request, this response parameter will echo the request parameter; otherwise, this response parameter is the property's current currency_code. Currency codes are string encodings of currency types from the ISO 4217 standard (en.wikipedia.org/wiki/ISO_4217); for example “USD”, “EUR”, “JPY”. To learn more, see support.google.com/analytics/answer/ 9796179. Corresponds to the JSON property `currencyCode` @return [String]

data_loss_from_other_row[RW]

If true, indicates some buckets of dimension combinations are rolled into “( other)” row. This can happen for high cardinality reports. Corresponds to the JSON property `dataLossFromOtherRow` @return [Boolean]

data_loss_from_other_row?[RW]

If true, indicates some buckets of dimension combinations are rolled into “( other)” row. This can happen for high cardinality reports. Corresponds to the JSON property `dataLossFromOtherRow` @return [Boolean]

time_zone[RW]

The property's current timezone. Intended to be used to interpret time-based dimensions like `hour` and `minute`. Formatted as strings from the IANA Time Zone database (www.iana.org/time-zones); for example “America/New_York” or “Asia/Tokyo”. Corresponds to the JSON property `timeZone` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/analyticsdata_v1beta/classes.rb, line 1451
def update!(**args)
  @currency_code = args[:currency_code] if args.key?(:currency_code)
  @data_loss_from_other_row = args[:data_loss_from_other_row] if args.key?(:data_loss_from_other_row)
  @time_zone = args[:time_zone] if args.key?(:time_zone)
end