From b15f805d223ed4eb66f8f2b23a65f5c75c5c442b Mon Sep 17 00:00:00 2001 From: Jonathan Martins Date: Fri, 12 Sep 2025 10:43:42 -0300 Subject: [PATCH] Adicionando txId do Pix --- src/Rede/Authorization.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/Rede/Authorization.php b/src/Rede/Authorization.php index 4c36565..a919a29 100644 --- a/src/Rede/Authorization.php +++ b/src/Rede/Authorization.php @@ -40,6 +40,8 @@ class Authorization private ?string $tid = null; + private ?string $txId = null; + private ?Brand $brand = null; /** @@ -306,6 +308,21 @@ public function setTid(?string $tid): static return $this; } + public function getTxId(): ?string + { + return $this->txId; + } + + /** + * @return $this + */ + public function setTxId(?string $txId): static + { + $this->txId = $txId; + + return $this; + } + public function getBrand(): ?Brand { return $this->brand;