class Google::Apis::AdmobV1beta::ReportRowDimensionValue

Representation of a dimension value.

Attributes

display_label[RW]

The localized string representation of the value. If unspecified, the display label should be derived from the value. Corresponds to the JSON property `displayLabel` @return [String]

value[RW]

Dimension value in the format specified in the report's spec Dimension enum. Corresponds to the JSON property `value` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/admob_v1beta/classes.rb, line 946
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 951
def update!(**args)
  @display_label = args[:display_label] if args.key?(:display_label)
  @value = args[:value] if args.key?(:value)
end