Class: Google::Apis::RealtimebiddingV1::DestinationNotCrawlableEvidence

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

Evidence that the creative's destination URL was not crawlable by Google.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DestinationNotCrawlableEvidence

Returns a new instance of DestinationNotCrawlableEvidence.



775
776
777
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 775

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

Instance Attribute Details

#crawl_timeString

Approximate time of the crawl. Corresponds to the JSON property crawlTime

Returns:

  • (String)


763
764
765
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 763

def crawl_time
  @crawl_time
end

#crawled_urlString

Destination URL that was attempted to be crawled. Corresponds to the JSON property crawledUrl

Returns:

  • (String)


768
769
770
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 768

def crawled_url
  @crawled_url
end

#reasonString

Reason of destination not crawlable. Corresponds to the JSON property reason

Returns:

  • (String)


773
774
775
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 773

def reason
  @reason
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



780
781
782
783
784
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 780

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