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.



887
888
889
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 887

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

Instance Attribute Details

#crawl_timeString

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

Returns:

  • (String)


875
876
877
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 875

def crawl_time
  @crawl_time
end

#crawled_urlString

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

Returns:

  • (String)


880
881
882
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 880

def crawled_url
  @crawled_url
end

#reasonString

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

Returns:

  • (String)


885
886
887
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 885

def reason
  @reason
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



892
893
894
895
896
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 892

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