From e4ab7d9fb074be7285e5ff951fa71ab71841d97c Mon Sep 17 00:00:00 2001 From: marek-olejak <7371526+marek-olejak@users.noreply.github.com> Date: Mon, 18 May 2026 12:45:39 +0200 Subject: [PATCH] [create-pull-request] automated change --- .../Data/DefaultSettings.php | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/src/Endpoint/Eshop/GetEshopDocumentSettingsResponse/GetEshopDocumentSettingsResponse/Data/DefaultSettings.php b/src/Endpoint/Eshop/GetEshopDocumentSettingsResponse/GetEshopDocumentSettingsResponse/Data/DefaultSettings.php index 03f6a0c..62e2494 100644 --- a/src/Endpoint/Eshop/GetEshopDocumentSettingsResponse/GetEshopDocumentSettingsResponse/Data/DefaultSettings.php +++ b/src/Endpoint/Eshop/GetEshopDocumentSettingsResponse/GetEshopDocumentSettingsResponse/Data/DefaultSettings.php @@ -18,6 +18,9 @@ class DefaultSettings extends Entity protected ?bool $showBarcode; protected ?bool $showBillFullName; protected ?bool $showBillFullNameOfRecipient; + protected ?bool $showRecipientEmail; + protected ?bool $showRecipientPhone; + protected ?bool $showRecipientDeliveryAddress; public function getBillingMethodId(): ?int { @@ -139,4 +142,37 @@ public function setShowBillFullNameOfRecipient(?bool $showBillFullNameOfRecipien $this->showBillFullNameOfRecipient = $showBillFullNameOfRecipient; return $this; } + + public function getShowRecipientEmail(): ?bool + { + return $this->showRecipientEmail; + } + + public function setShowRecipientEmail(?bool $showRecipientEmail): static + { + $this->showRecipientEmail = $showRecipientEmail; + return $this; + } + + public function getShowRecipientPhone(): ?bool + { + return $this->showRecipientPhone; + } + + public function setShowRecipientPhone(?bool $showRecipientPhone): static + { + $this->showRecipientPhone = $showRecipientPhone; + return $this; + } + + public function getShowRecipientDeliveryAddress(): ?bool + { + return $this->showRecipientDeliveryAddress; + } + + public function setShowRecipientDeliveryAddress(?bool $showRecipientDeliveryAddress): static + { + $this->showRecipientDeliveryAddress = $showRecipientDeliveryAddress; + return $this; + } }