Class: Google::Apis::Adexchangebuyer2V2beta1::FilteredBidCreativeRow

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

Overview

The number of filtered bids with the specified dimension values that have the specified creative.

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) ⇒ FilteredBidCreativeRow

Returns a new instance of FilteredBidCreativeRow.



1749
1750
1751
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1749

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

Instance Attribute Details

#bid_countGoogle::Apis::Adexchangebuyer2V2beta1::MetricValue

A metric value, with an expected value and a variance; represents a count that may be either exact or estimated (i.e. when sampled). Corresponds to the JSON property bidCount



1736
1737
1738
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1736

def bid_count
  @bid_count
end

#creative_idString

The ID of the creative. Corresponds to the JSON property creativeId

Returns:

  • (String)


1741
1742
1743
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1741

def creative_id
  @creative_id
end

#row_dimensionsGoogle::Apis::Adexchangebuyer2V2beta1::RowDimensions

A response may include multiple rows, breaking down along various dimensions. Encapsulates the values of all dimensions for a given row. Corresponds to the JSON property rowDimensions



1747
1748
1749
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1747

def row_dimensions
  @row_dimensions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1754
1755
1756
1757
1758
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1754

def update!(**args)
  @bid_count = args[:bid_count] if args.key?(:bid_count)
  @creative_id = args[:creative_id] if args.key?(:creative_id)
  @row_dimensions = args[:row_dimensions] if args.key?(:row_dimensions)
end