PluginProbe
Brevo – Email, SMS, Web Push, Chat, and more. / 3.2.8
Brevo – Email, SMS, Web Push, Chat, and more. v3.2.8
2.9.13 2.9.14 2.9.15 2.9.16 2.9.17 2.9.18 2.9.4 2.9.5 2.9.6 2.9.7 2.9.8 2.9.9 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.9 3.1.0 3.1.1 3.1.10 3.1.11 All 140 releases
mailin / wonderpush-php-lib / lib / Obj / CampaignScheduleUrlCriterion.php
CampaignScheduleUrlCriterion.php
60 lines 993 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 }