Esempio n. 1
0
 /**
  * @param int $embeddable
  * @return $this
  */
 public function setEmbeddable($embeddable)
 {
     $this->validateIn($embeddable, BitType::getAll());
     $this->embeddable = $embeddable;
     return $this;
 }
Esempio n. 2
0
 /**
  * @param int $js
  * @return $this
  * @throws \PowerLinks\OpenRtb\Tools\Exceptions\ExceptionInvalidValue
  */
 public function setJs($js)
 {
     $this->validateIn($js, BitType::getAll());
     $this->js = $js;
     return $this;
 }
Esempio n. 3
0
 /**
  * @param int $coppa
  * @return $this
  * @throws \PowerLinks\OpenRtb\Tools\Exceptions\ExceptionInvalidValue
  */
 public function setCoppa($coppa)
 {
     $this->validateIn($coppa, BitType::getAll());
     $this->coppa = $coppa;
     return $this;
 }
Esempio n. 4
0
 /**
  * @param int $boxingallowed
  * @return $this
  * @throws \PowerLinks\OpenRtb\Tools\Exceptions\ExceptionInvalidValue
  */
 public function setBoxingallowed($boxingallowed)
 {
     $this->validateIn($boxingallowed, BitType::getAll());
     $this->boxingallowed = $boxingallowed;
     return $this;
 }
Esempio n. 5
0
 /**
  * @param int $private_auction
  * @return $this
  * @throws \PowerLinks\OpenRtb\Tools\Exceptions\ExceptionInvalidValue
  */
 public function setPrivate_auction($private_auction)
 {
     $this->validateIn($private_auction, BitType::getAll());
     $this->private_auction = $private_auction;
     return $this;
 }
Esempio n. 6
0
 /**
  * @param $privacypolicy
  * @return $this
  * @throws \PowerLinks\OpenRtb\Tools\Exceptions\ExceptionInvalidValue
  */
 public function setPrivacypolicy($privacypolicy)
 {
     $this->validateIn($privacypolicy, BitType::getAll());
     $this->privacypolicy = $privacypolicy;
     return $this;
 }
Esempio n. 7
0
 /**
  * @param int $secure
  * @return $this
  * @throws \PowerLinks\OpenRtb\Tools\Exceptions\ExceptionInvalidValue
  */
 public function setSecure($secure)
 {
     $this->validateIn($secure, BitType::getAll());
     $this->secure = (int) $secure;
     return $this;
 }
Esempio n. 8
0
 /**
  * @param int $allimps
  * @return $this
  * @throws \PowerLinks\OpenRtb\Tools\Exceptions\ExceptionInvalidValue
  */
 public function setAllimps($allimps)
 {
     $this->validateIn($allimps, BitType::getAll());
     $this->allimps = $allimps;
     return $this;
 }
Esempio n. 9
0
 /**
  * @param int $paid
  * @return $this
  * @throws \PowerLinks\OpenRtb\Tools\Exceptions\ExceptionInvalidValue
  */
 public function setPaid($paid)
 {
     $this->validateIn($paid, BitType::getAll());
     $this->paid = $paid;
     return $this;
 }