boolValue = $boolValue; } /** * @return bool */ public function getBoolValue() { return $this->boolValue; } public function setFloatValue($floatValue) { $this->floatValue = $floatValue; } public function getFloatValue() { return $this->floatValue; } /** * @param string */ public function setIntValue($intValue) { $this->intValue = $intValue; } /** * @return string */ public function getIntValue() { return $this->intValue; } /** * @param int */ public function setLanguage($language) { $this->language = $language; } /** * @return int */ public function getLanguage() { return $this->language; } /** * @param string */ public function setType($type) { $this->type = $type; } /** * @return string */ public function getType() { return $this->type; } /** * @param int */ public function setTypeId($typeId) { $this->typeId = $typeId; } /** * @return int */ public function getTypeId() { return $this->typeId; } /** * @param string */ public function setValue($value) { $this->value = $value; } /** * @return string */ public function getValue() { return $this->value; } /** * @param string */ public function setValueType($valueType) { $this->valueType = $valueType; } /** * @return string */ public function getValueType() { return $this->valueType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(NlpSaftEntityProfileAttribute::class, 'Google_Service_Contentwarehouse_NlpSaftEntityProfileAttribute');