description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * The label key. * * @param string $key */ public function setKey($key) { $this->key = $key; } /** * @return string */ public function getKey() { return $this->key; } /** * The type of data that can be assigned to the label. * * Accepted values: STRING, BOOL, INT64 * * @param self::VALUE_TYPE_* $valueType */ public function setValueType($valueType) { $this->valueType = $valueType; } /** * @return self::VALUE_TYPE_* */ public function getValueType() { return $this->valueType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(LabelDescriptor::class, 'Google_Service_ServiceNetworking_LabelDescriptor');