class Google::Apis::Adexchangebuyer2V2beta1::ImpressionMetricsRow

The set of metrics that are measured in numbers of impressions, representing how many impressions with the specified dimension values were considered eligible at each stage of the bidding funnel.

Attributes

available_impressions[RW]

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 `availableImpressions` @return [Google::Apis::Adexchangebuyer2V2beta1::MetricValue]

bid_requests[RW]

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 `bidRequests` @return [Google::Apis::Adexchangebuyer2V2beta1::MetricValue]

inventory_matches[RW]

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 `inventoryMatches` @return [Google::Apis::Adexchangebuyer2V2beta1::MetricValue]

responses_with_bids[RW]

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 `responsesWithBids` @return [Google::Apis::Adexchangebuyer2V2beta1::MetricValue]

row_dimensions[RW]

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` @return [Google::Apis::Adexchangebuyer2V2beta1::RowDimensions]

successful_responses[RW]

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 `successfulResponses` @return [Google::Apis::Adexchangebuyer2V2beta1::MetricValue]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/adexchangebuyer2_v2beta1/classes.rb, line 1995
def update!(**args)
  @available_impressions = args[:available_impressions] if args.key?(:available_impressions)
  @bid_requests = args[:bid_requests] if args.key?(:bid_requests)
  @inventory_matches = args[:inventory_matches] if args.key?(:inventory_matches)
  @responses_with_bids = args[:responses_with_bids] if args.key?(:responses_with_bids)
  @row_dimensions = args[:row_dimensions] if args.key?(:row_dimensions)
  @successful_responses = args[:successful_responses] if args.key?(:successful_responses)
end