description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * @param string */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * @param string[] */ public function setLabels($labels) { $this->labels = $labels; } /** * @return string[] */ public function getLabels() { return $this->labels; } /** * @param string */ public function setType($type) { $this->type = $type; } /** * @return string */ public function getType() { return $this->type; } /** * @param string */ public function setUuid($uuid) { $this->uuid = $uuid; } /** * @return string */ public function getUuid() { return $this->uuid; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AttackStepNode::class, 'Google_Service_SecurityCommandCenter_AttackStepNode');