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

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_timeString

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

Returns:

  • (String)


568
569
570
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 568

def crawl_time
  @crawl_time
end

#crawled_urlString

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

Returns:

  • (String)


573
574
575
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 573

def crawled_url
  @crawled_url
end

#reasonString

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

Returns:

  • (String)


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