lookupStrategy = $lookupStrategy; } /** * @return self::LOOKUP_STRATEGY_* */ public function getLookupStrategy() { return $this->lookupStrategy; } /** * List of URLs to look up for the paired AMP URLs. The URLs are case- * sensitive. Up to 50 URLs per lookup (see [Usage * Limits](/amp/cache/reference/limits)). * * @param string[] $urls */ public function setUrls($urls) { $this->urls = $urls; } /** * @return string[] */ public function getUrls() { return $this->urls; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(BatchGetAmpUrlsRequest::class, 'Google_Service_Acceleratedmobilepageurl_BatchGetAmpUrlsRequest');