done = $done; } /** * @return bool */ public function getDone() { return $this->done; } /** * @param string */ public function setError($error) { $this->error = $error; } /** * @return string */ public function getError() { return $this->error; } /** * @param string */ public function setOperationId($operationId) { $this->operationId = $operationId; } /** * @return string */ public function getOperationId() { return $this->operationId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ClusterOperation::class, 'Google_Service_Dataproc_ClusterOperation');