diff --git a/src/Rede/Brand.php b/src/Rede/Brand.php index 97caeb5..51c271f 100644 --- a/src/Rede/Brand.php +++ b/src/Rede/Brand.php @@ -21,6 +21,12 @@ class Brand */ private $returnMessage; + /** + * @var string + */ + private $brandTid; + + /** * @return string */ @@ -78,5 +84,24 @@ public function setReturnMessage(string $returnMessage): Brand return $this; } + /** + * @return mixed + */ + public function getBrandTid() + { + return $this->brandTid; + } + + /** + * @param mixed $brandTid + * + * @return Brand + */ + public function setBrandTid(string $brandTid): Brand + { + $this->brandTid = $brandTid; + return $this; + } + } \ No newline at end of file