title; } public function getTitle(): ?string { return $this->title; } public function setTitle(string $title): self { $this->title = $title; return $this; } public function getOrderShop(): ?OrderShopInterface { return $this->orderShop; } public function setOrderShop(?OrderShopInterface $orderShop): self { $this->orderShop = $orderShop; return $this; } public function getReductionCart(): ?ReductionCartInterface { return $this->reductionCart; } public function setReductionCart(?ReductionCartInterface $reductionCart): self { $this->reductionCart = $reductionCart; return $this; } public function getCodeUsed(): ?string { return $this->codeUsed; } public function setCodeUsed(?string $codeUsed): self { $this->codeUsed = $codeUsed; return $this; } }