contents = $contents; } /** * @return string */ public function getContents() { return $this->contents; } /** * @param Target[] */ public function setDependencyTargets($dependencyTargets) { $this->dependencyTargets = $dependencyTargets; } /** * @return Target[] */ public function getDependencyTargets() { return $this->dependencyTargets; } /** * @param bool */ public function setDisabled($disabled) { $this->disabled = $disabled; } /** * @return bool */ public function getDisabled() { return $this->disabled; } /** * @param string[] */ public function setTags($tags) { $this->tags = $tags; } /** * @return string[] */ public function getTags() { return $this->tags; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Notebook::class, 'Google_Service_Dataform_Notebook');