boolValue = $boolValue; } /** * @return bool */ public function getBoolValue() { return $this->boolValue; } /** * @param string */ public function setIntValue($intValue) { $this->intValue = $intValue; } /** * @return string */ public function getIntValue() { return $this->intValue; } /** * @param string */ public function setKey($key) { $this->key = $key; } /** * @return string */ public function getKey() { return $this->key; } /** * @param Secret */ public function setSecretValue(Secret $secretValue) { $this->secretValue = $secretValue; } /** * @return Secret */ public function getSecretValue() { return $this->secretValue; } /** * @param string */ public function setStringValue($stringValue) { $this->stringValue = $stringValue; } /** * @return string */ public function getStringValue() { return $this->stringValue; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ConfigVariable::class, 'Google_Service_Connectors_ConfigVariable');