Class: Google::Apis::RealtimebiddingV1::DomainCallEvidence

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

Overview

Number of HTTP calls made by a creative, broken down by domain.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DomainCallEvidence

Returns a new instance of DomainCallEvidence.



992
993
994
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 992

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

Instance Attribute Details

#top_http_call_domainsArray<Google::Apis::RealtimebiddingV1::DomainCalls>

Breakdown of the most frequent domains called through HTTP by the creative. Corresponds to the JSON property topHttpCallDomains



984
985
986
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 984

def top_http_call_domains
  @top_http_call_domains
end

#total_http_call_countFixnum

The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains. Corresponds to the JSON property totalHttpCallCount

Returns:

  • (Fixnum)


990
991
992
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 990

def total_http_call_count
  @total_http_call_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



997
998
999
1000
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 997

def update!(**args)
  @top_http_call_domains = args[:top_http_call_domains] if args.key?(:top_http_call_domains)
  @total_http_call_count = args[:total_http_call_count] if args.key?(:total_http_call_count)
end