diff --git a/src/Rede/Brand.php b/src/Rede/Brand.php index 29a97af..d10e961 100644 --- a/src/Rede/Brand.php +++ b/src/Rede/Brand.php @@ -19,7 +19,11 @@ class Brand * @var string|null */ private ?string $returnMessage = null; - + + /** + * @var string + */ + private $authorizationCode = null; /** * @return string|null */ @@ -73,4 +77,22 @@ public function setReturnMessage(?string $returnMessage): Brand $this->returnMessage = $returnMessage; return $this; } + /** + * @return string + */ + public function getAuthorizationCode() + { + return $this->authorizationCode; + } + + /** + * @param string $AuthorizationCode + * + * @return Brand + */ + public function setAuthorizationCode(string $returnMessage): Brand + { + $this->authorizationCode = $authorizationCode; + return $this; + } }