Class: Google::Apis::RealtimebiddingV1::DomainCalls
- Inherits:
-
Object
- Object
- Google::Apis::RealtimebiddingV1::DomainCalls
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/realtimebidding_v1/classes.rb,
generated/google/apis/realtimebidding_v1/representations.rb,
generated/google/apis/realtimebidding_v1/representations.rb
Overview
The number of HTTP calls made to the given domain.
Instance Attribute Summary collapse
-
#domain ⇒ String
The domain name.
-
#http_call_count ⇒ Fixnum
Number of HTTP calls made to the domain.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DomainCalls
constructor
A new instance of DomainCalls.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DomainCalls
Returns a new instance of DomainCalls.
714 715 716 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 714 def initialize(**args) update!(**args) end |
Instance Attribute Details
#domain ⇒ String
The domain name.
Corresponds to the JSON property domain
707 708 709 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 707 def domain @domain end |
#http_call_count ⇒ Fixnum
Number of HTTP calls made to the domain.
Corresponds to the JSON property httpCallCount
712 713 714 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 712 def http_call_count @http_call_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
719 720 721 722 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 719 def update!(**args) @domain = args[:domain] if args.key?(:domain) @http_call_count = args[:http_call_count] if args.key?(:http_call_count) end |