Class: Google::Apis::Adexchangebuyer2V2beta1::BidResponseWithoutBidsStatusRow

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 impressions with the specified dimension values that were considered to have no applicable bids, as described by the specified status.

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

Returns a new instance of BidResponseWithoutBidsStatusRow



766
767
768
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 766

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

Instance Attribute Details

#impression_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 impressionCount



752
753
754
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 752

def impression_count
  @impression_count
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



764
765
766
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 764

def row_dimensions
  @row_dimensions
end

#statusString

The status that caused the bid response to be considered to have no applicable bids. Corresponds to the JSON property status

Returns:

  • (String)


758
759
760
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 758

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



771
772
773
774
775
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 771

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