crawlTime = $crawlTime; } /** * @return string */ public function getCrawlTime() { return $this->crawlTime; } /** * Destination URL that was attempted to be crawled. * * @param string $crawledUrl */ public function setCrawledUrl($crawledUrl) { $this->crawledUrl = $crawledUrl; } /** * @return string */ public function getCrawledUrl() { return $this->crawledUrl; } /** * Reason of destination not crawlable. * * Accepted values: REASON_UNSPECIFIED, UNREACHABLE_ROBOTS, TIMEOUT_ROBOTS, * ROBOTED_DENIED, UNKNOWN * * @param self::REASON_* $reason */ public function setReason($reason) { $this->reason = $reason; } /** * @return self::REASON_* */ public function getReason() { return $this->reason; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DestinationNotCrawlableEvidence::class, 'Google_Service_RealTimeBidding_DestinationNotCrawlableEvidence');