attributionToken = $attributionToken; } /** * @return string */ public function getAttributionToken() { return $this->attributionToken; } /** * IDs of documents in the request that were missing from the default Branch * associated with the requested ServingConfig. * * @param string[] $missingIds */ public function setMissingIds($missingIds) { $this->missingIds = $missingIds; } /** * @return string[] */ public function getMissingIds() { return $this->missingIds; } /** * A list of recommended Documents. The order represents the ranking (from the * most relevant Document to the least). * * @param GoogleCloudDiscoveryengineV1RecommendResponseRecommendationResult[] $results */ public function setResults($results) { $this->results = $results; } /** * @return GoogleCloudDiscoveryengineV1RecommendResponseRecommendationResult[] */ public function getResults() { return $this->results; } /** * True if RecommendRequest.validate_only was set. * * @param bool $validateOnly */ public function setValidateOnly($validateOnly) { $this->validateOnly = $validateOnly; } /** * @return bool */ public function getValidateOnly() { return $this->validateOnly; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDiscoveryengineV1RecommendResponse::class, 'Google_Service_DiscoveryEngine_GoogleCloudDiscoveryengineV1RecommendResponse');