From cfae7e07928b842f514049bc3315ab931d89abe7 Mon Sep 17 00:00:00 2001 From: drlikm <4454449+drlikm@users.noreply.github.com> Date: Wed, 27 May 2026 10:26:44 +0200 Subject: [PATCH] [create-pull-request] automated change --- src/Component/Entity/Invoice.php | 12 ++++++++++++ .../GetListOfInvoicesResponse/Data/Invoices/Item.php | 12 ++++++++++++ .../Data/ProformaInvoices/Item.php | 12 ++++++++++++ 3 files changed, 36 insertions(+) diff --git a/src/Component/Entity/Invoice.php b/src/Component/Entity/Invoice.php index c982115..eefb12c 100644 --- a/src/Component/Entity/Invoice.php +++ b/src/Component/Entity/Invoice.php @@ -37,6 +37,7 @@ class Invoice extends Entity protected bool $vatPayer; protected ?string $vatMode; protected ?ProofPaymentsForInvoice $proofPayments; + protected ?bool $paid; public function getCode(): string { @@ -312,4 +313,15 @@ public function setProofPayments(?ProofPaymentsForInvoice $proofPayments): stati $this->proofPayments = $proofPayments; return $this; } + + public function getPaid(): ?bool + { + return $this->paid; + } + + public function setPaid(?bool $paid): static + { + $this->paid = $paid; + return $this; + } } diff --git a/src/Endpoint/Invoices/GetListOfInvoicesResponse/GetListOfInvoicesResponse/Data/Invoices/Item.php b/src/Endpoint/Invoices/GetListOfInvoicesResponse/GetListOfInvoicesResponse/Data/Invoices/Item.php index a23ed73..28275a1 100644 --- a/src/Endpoint/Invoices/GetListOfInvoicesResponse/GetListOfInvoicesResponse/Data/Invoices/Item.php +++ b/src/Endpoint/Invoices/GetListOfInvoicesResponse/GetListOfInvoicesResponse/Data/Invoices/Item.php @@ -23,6 +23,7 @@ class Item extends Entity protected ?TypeDateTimeNullable $changeTime; protected ?TypeDateNullable $dueDate; protected ?TypeDateNullable $taxDate; + protected ?bool $paid; public function getCode(): string { @@ -155,4 +156,15 @@ public function setTaxDate(?TypeDateNullable $taxDate): static $this->taxDate = $taxDate; return $this; } + + public function getPaid(): ?bool + { + return $this->paid; + } + + public function setPaid(?bool $paid): static + { + $this->paid = $paid; + return $this; + } } diff --git a/src/Endpoint/ProformaInvoices/GetListOfProformaInvoicesResponse/GetListOfProformaInvoicesResponse/Data/ProformaInvoices/Item.php b/src/Endpoint/ProformaInvoices/GetListOfProformaInvoicesResponse/GetListOfProformaInvoicesResponse/Data/ProformaInvoices/Item.php index 84e0cf2..1db9b4a 100644 --- a/src/Endpoint/ProformaInvoices/GetListOfProformaInvoicesResponse/GetListOfProformaInvoicesResponse/Data/ProformaInvoices/Item.php +++ b/src/Endpoint/ProformaInvoices/GetListOfProformaInvoicesResponse/GetListOfProformaInvoicesResponse/Data/ProformaInvoices/Item.php @@ -18,6 +18,7 @@ class Item extends Entity protected ?string $billFullName; protected Price $price; protected TypeDateTimeNullable $changeTime; + protected ?bool $paid; public function getCode(): string { @@ -117,4 +118,15 @@ public function setChangeTime(TypeDateTimeNullable $changeTime): static $this->changeTime = $changeTime; return $this; } + + public function getPaid(): ?bool + { + return $this->paid; + } + + public function setPaid(?bool $paid): static + { + $this->paid = $paid; + return $this; + } }