members = $members; } /** * @return Variable[] */ public function getMembers() { return $this->members; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param StatusMessage */ public function setStatus(StatusMessage $status) { $this->status = $status; } /** * @return StatusMessage */ public function getStatus() { return $this->status; } /** * @param string */ public function setType($type) { $this->type = $type; } /** * @return string */ public function getType() { return $this->type; } /** * @param string */ public function setValue($value) { $this->value = $value; } /** * @return string */ public function getValue() { return $this->value; } /** * @param int */ public function setVarTableIndex($varTableIndex) { $this->varTableIndex = $varTableIndex; } /** * @return int */ public function getVarTableIndex() { return $this->varTableIndex; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Variable::class, 'Google_Service_CloudDebugger_Variable');