From 3a460fa3274b672552ec03954ad210a3914f49c9 Mon Sep 17 00:00:00 2001 From: QuentinGallard Date: Thu, 15 Jul 2021 16:30:19 +0200 Subject: [PATCH] Add ext attribute in Source object --- src/BidRequest/Source.php | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/src/BidRequest/Source.php b/src/BidRequest/Source.php index 1bda31e..c461638 100644 --- a/src/BidRequest/Source.php +++ b/src/BidRequest/Source.php @@ -44,6 +44,11 @@ class Source implements Arrayable */ protected $pchain; + /** + * @var Ext + */ + protected $ext; + /** * @return bool */ @@ -107,6 +112,21 @@ public function setPchain($pchain) return $this; } + /** + * @return Ext + */ + public function getExt() + { + return $this->ext; + } - + /** + * @param Ext $ext + * @return $this + */ + public function setExt(Ext $ext) + { + $this->ext = $ext; + return $this; + } }