id; } public function setType(int $type) : void { $this->type = $type; } public function getType() : int { return $this->type; } public function setSubtype(int $type) : void { $this->subtype = $type; } public function getSubtype() : int { return $this->subtype; } public function getValue() : string { return $this->value; } public function setValue(string $value) : void { $this->value = $value; } public function getDescription() : string { return $this->description; } public function setDescription(string $description) : void { $this->description = $description; } }