deferred = $deferred; } /** * @return Key[] */ public function getDeferred() { return $this->deferred; } /** * @param EntityResult[] */ public function setFound($found) { $this->found = $found; } /** * @return EntityResult[] */ public function getFound() { return $this->found; } /** * @param EntityResult[] */ public function setMissing($missing) { $this->missing = $missing; } /** * @return EntityResult[] */ public function getMissing() { return $this->missing; } /** * @param string */ public function setReadTime($readTime) { $this->readTime = $readTime; } /** * @return string */ public function getReadTime() { return $this->readTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(LookupResponse::class, 'Google_Service_Datastore_LookupResponse');