boolValue = $boolValue; } /** * @return bool */ public function getBoolValue() { return $this->boolValue; } public function setNumberValue($numberValue) { $this->numberValue = $numberValue; } public function getNumberValue() { return $this->numberValue; } /** * @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(GoogleAppsCloudidentityDevicesV1CustomAttributeValue::class, 'Google_Service_CloudIdentity_GoogleAppsCloudidentityDevicesV1CustomAttributeValue');