type = $type; } /** * @return string */ public function getType() { return $this->type; } /** * @param bool */ public function setValueBool($valueBool) { $this->valueBool = $valueBool; } /** * @return bool */ public function getValueBool() { return $this->valueBool; } /** * @param int */ public function setValueInteger($valueInteger) { $this->valueInteger = $valueInteger; } /** * @return int */ public function getValueInteger() { return $this->valueInteger; } /** * @param string[] */ public function setValueMultiselect($valueMultiselect) { $this->valueMultiselect = $valueMultiselect; } /** * @return string[] */ public function getValueMultiselect() { return $this->valueMultiselect; } /** * @param string */ public function setValueString($valueString) { $this->valueString = $valueString; } /** * @return string */ public function getValueString() { return $this->valueString; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AppRestrictionsSchemaRestrictionRestrictionValue::class, 'Google_Service_AndroidEnterprise_AppRestrictionsSchemaRestrictionRestrictionValue');