Class: Google::Apis::Adexchangebuyer2V2beta1::ImpressionMetricsRow

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 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.

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

Returns a new instance of ImpressionMetricsRow



1161
1162
1163
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1161

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

Instance Attribute Details

#available_impressionsGoogle::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 availableImpressions



1129
1130
1131
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1129

def available_impressions
  @available_impressions
end

#bid_requestsGoogle::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 bidRequests



1135
1136
1137
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1135

def bid_requests
  @bid_requests
end

#inventory_matchesGoogle::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 inventoryMatches



1141
1142
1143
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1141

def inventory_matches
  @inventory_matches
end

#responses_with_bidsGoogle::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 responsesWithBids



1147
1148
1149
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1147

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



1153
1154
1155
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1153

def row_dimensions
  @row_dimensions
end

#successful_responsesGoogle::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 successfulResponses



1159
1160
1161
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1159

def successful_responses
  @successful_responses
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1166
1167
1168
1169
1170
1171
1172
1173
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1166

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