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 getReductionCredit(): ?ReductionCreditInterface { return $this->reductionCredit; } public function setReductionCredit(?ReductionCreditInterface $reductionCredit): self { $this->reductionCredit = $reductionCredit; return $this; } public function getType(): ?string { return $this->type; } public function setType(string $type): self { $this->type = $type; return $this; } }