code = $code; $this->name = $name; $this->type = $type; $this->value = $value; } /** * @return string */ public function getCode(): string { return $this->code; } /** * @return string */ public function getName(): ?string { return $this->name; } /** * @return string */ public function getType(): ?string { return $this->type; } /** * @return float */ public function getValue(): ?float { return $this->value; } }