Class: Google::Apis::AdexchangebuyerV1_4::DimensionDimensionValue

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

Overview

Value of the dimension.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DimensionDimensionValue

Returns a new instance of DimensionDimensionValue



1706
1707
1708
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1706

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

Instance Attribute Details

#idFixnum

Id of the dimension. Corresponds to the JSON property id

Returns:

  • (Fixnum)


1691
1692
1693
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1691

def id
  @id
end

#nameString

Name of the dimension mainly for debugging purposes, except for the case of CREATIVE_SIZE. For CREATIVE_SIZE, strings are used instead of ids. Corresponds to the JSON property name

Returns:

  • (String)


1697
1698
1699
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1697

def name
  @name
end

#percentageFixnum

Percent of total impressions for a dimension type. e.g. dimension_type: ' GENDER', [dimension_value: id: 1, name: 'MALE', percentage: 60] Gender MALE is 60% of all impressions which have gender. Corresponds to the JSON property percentage

Returns:

  • (Fixnum)


1704
1705
1706
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1704

def percentage
  @percentage
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1711
1712
1713
1714
1715
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1711

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