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;