Class: Google::Apis::RealtimebiddingV1::DestinationNotCrawlableEvidence
- Inherits:
-
Object
- Object
- Google::Apis::RealtimebiddingV1::DestinationNotCrawlableEvidence
- 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
Evidence that the creative's destination URL was not crawlable by Google.
Instance Attribute Summary collapse
-
#crawl_time ⇒ String
Approximate time of the crawl.
-
#crawled_url ⇒ String
Destination URL that was attempted to be crawled.
-
#reason ⇒ String
Reason of destination not crawlable.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DestinationNotCrawlableEvidence
constructor
A new instance of DestinationNotCrawlableEvidence.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DestinationNotCrawlableEvidence
Returns a new instance of DestinationNotCrawlableEvidence.
580 581 582 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 580 def initialize(**args) update!(**args) end |
Instance Attribute Details
#crawl_time ⇒ String
Approximate time of the crawl.
Corresponds to the JSON property crawlTime
568 569 570 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 568 def crawl_time @crawl_time end |
#crawled_url ⇒ String
Destination URL that was attempted to be crawled.
Corresponds to the JSON property crawledUrl
573 574 575 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 573 def crawled_url @crawled_url end |
#reason ⇒ String
Reason of destination not crawlable.
Corresponds to the JSON property reason
578 579 580 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 578 def reason @reason end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
585 586 587 588 589 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 585 def update!(**args) @crawl_time = args[:crawl_time] if args.key?(:crawl_time) @crawled_url = args[:crawled_url] if args.key?(:crawled_url) @reason = args[:reason] if args.key?(:reason) end |