setName($fee->getName()) ->setNameInternal($fee->getNameInternal()) ->setValue($fee->getValue()) ; return $instance; } public function getId(): ?int { return $this->id; } public function getValue(): ?int { return $this->value; } public function setValue(int $value): static { $this->value = $value; return $this; } public function getName(): ?string { return $this->name; } public function setName(string $name): static { $this->name = $name; return $this; } public function getNameInternal(): ?string { return $this->nameInternal; } public function setNameInternal(?string $nameInternal): static { $this->nameInternal = $nameInternal; return $this; } }