CampaignScheduleUrlCriterion.php
| 1 | <?php |
| 2 | |
| 3 | namespace WonderPush\Obj; |
| 4 | |
| 5 | class CampaignScheduleUrlCriterion extends BaseObject { |
| 6 | private $operator; |
| 7 | /** @var bool */ |
| 8 | private $negate; |
| 9 | /** @var string */ |
| 10 | private $value; |
| 11 | |
| 12 | /** |
| 13 | * @return string |
| 14 | */ |
| 15 | public function getOperator() { |
| 16 | return $this->operator; |
| 17 | } |
| 18 | |
| 19 | /** |
| 20 | * @param string $operator |
| 21 | * @return CampaignScheduleUrlCriterion |
| 22 | */ |
| 23 | public function setOperator($operator) { |
| 24 | $this->operator = $operator; |
| 25 | return $this; |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * @return bool |
| 30 | */ |
| 31 | public function isNegate() { |
| 32 | return $this->negate; |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * @param bool $negate |
| 37 | * @return CampaignScheduleUrlCriterion |
| 38 | */ |
| 39 | public function setNegate($negate) { |
| 40 | $this->negate = $negate; |
| 41 | return $this; |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * @return string |
| 46 | */ |
| 47 | public function getValue() { |
| 48 | return $this->value; |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * @param string $value |
| 53 | * @return CampaignScheduleUrlCriterion |
| 54 | */ |
| 55 | public function setValue($value) { |
| 56 | $this->value = $value; |
| 57 | return $this; |
| 58 | } |
| 59 | |
| 60 | } |