Class: Google::Apis::Adexchangebuyer2V2beta1::ImpressionMetricsRow
- Inherits:
-
Object
- Object
- Google::Apis::Adexchangebuyer2V2beta1::ImpressionMetricsRow
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/adexchangebuyer2_v2beta1/classes.rb,
lib/google/apis/adexchangebuyer2_v2beta1/representations.rb,
lib/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
-
#available_impressions ⇒ Google::Apis::Adexchangebuyer2V2beta1::MetricValue
A metric value, with an expected value and a variance; represents a count that may be either exact or estimated (for example, when sampled).
-
#bid_requests ⇒ Google::Apis::Adexchangebuyer2V2beta1::MetricValue
A metric value, with an expected value and a variance; represents a count that may be either exact or estimated (for example, when sampled).
-
#inventory_matches ⇒ Google::Apis::Adexchangebuyer2V2beta1::MetricValue
A metric value, with an expected value and a variance; represents a count that may be either exact or estimated (for example, when sampled).
-
#responses_with_bids ⇒ Google::Apis::Adexchangebuyer2V2beta1::MetricValue
A metric value, with an expected value and a variance; represents a count that may be either exact or estimated (for example, when sampled).
-
#row_dimensions ⇒ Google::Apis::Adexchangebuyer2V2beta1::RowDimensions
A response may include multiple rows, breaking down along various dimensions.
-
#successful_responses ⇒ Google::Apis::Adexchangebuyer2V2beta1::MetricValue
A metric value, with an expected value and a variance; represents a count that may be either exact or estimated (for example, when sampled).
Instance Method Summary collapse
-
#initialize(**args) ⇒ ImpressionMetricsRow
constructor
A new instance of ImpressionMetricsRow.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ImpressionMetricsRow
Returns a new instance of ImpressionMetricsRow.
1993 1994 1995 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1993 def initialize(**args) update!(**args) end |
Instance Attribute Details
#available_impressions ⇒ Google::Apis::Adexchangebuyer2V2beta1::MetricValue
A metric value, with an expected value and a variance; represents a count that
may be either exact or estimated (for example, when sampled).
Corresponds to the JSON property availableImpressions
1961 1962 1963 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1961 def available_impressions @available_impressions end |
#bid_requests ⇒ Google::Apis::Adexchangebuyer2V2beta1::MetricValue
A metric value, with an expected value and a variance; represents a count that
may be either exact or estimated (for example, when sampled).
Corresponds to the JSON property bidRequests
1967 1968 1969 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1967 def bid_requests @bid_requests end |
#inventory_matches ⇒ Google::Apis::Adexchangebuyer2V2beta1::MetricValue
A metric value, with an expected value and a variance; represents a count that
may be either exact or estimated (for example, when sampled).
Corresponds to the JSON property inventoryMatches
1973 1974 1975 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1973 def inventory_matches @inventory_matches end |
#responses_with_bids ⇒ Google::Apis::Adexchangebuyer2V2beta1::MetricValue
A metric value, with an expected value and a variance; represents a count that
may be either exact or estimated (for example, when sampled).
Corresponds to the JSON property responsesWithBids
1979 1980 1981 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1979 def responses_with_bids @responses_with_bids end |
#row_dimensions ⇒ Google::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
1985 1986 1987 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1985 def row_dimensions @row_dimensions end |
#successful_responses ⇒ Google::Apis::Adexchangebuyer2V2beta1::MetricValue
A metric value, with an expected value and a variance; represents a count that
may be either exact or estimated (for example, when sampled).
Corresponds to the JSON property successfulResponses
1991 1992 1993 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1991 def successful_responses @successful_responses end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1998 1999 2000 2001 2002 2003 2004 2005 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1998 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 |