done = $done; } /** * @return bool */ public function getDone() { return $this->done; } /** * @param Status */ public function setError(Status $error) { $this->error = $error; } /** * @return Status */ public function getError() { return $this->error; } /** * @param string */ public function setJobReference($jobReference) { $this->jobReference = $jobReference; } /** * @return string */ public function getJobReference() { return $this->jobReference; } /** * @param QueryAssetsOutputConfig */ public function setOutputConfig(QueryAssetsOutputConfig $outputConfig) { $this->outputConfig = $outputConfig; } /** * @return QueryAssetsOutputConfig */ public function getOutputConfig() { return $this->outputConfig; } /** * @param QueryResult */ public function setQueryResult(QueryResult $queryResult) { $this->queryResult = $queryResult; } /** * @return QueryResult */ public function getQueryResult() { return $this->queryResult; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(QueryAssetsResponse::class, 'Google_Service_CloudAsset_QueryAssetsResponse');