1 | <?php |
||
7 | class Campaign extends Model |
||
8 | { |
||
9 | |||
10 | protected $id = null; |
||
11 | |||
12 | protected $domain = null; |
||
13 | |||
14 | protected $state = null; |
||
15 | |||
16 | protected $stateReasons = null; |
||
17 | |||
18 | protected $mappingClasses = []; |
||
19 | |||
20 | protected $propNameMap = []; |
||
21 | |||
22 | /** |
||
23 | * Retrieve the id property |
||
24 | * |
||
25 | * @return int|null |
||
26 | */ |
||
27 | 1 | public function getId() |
|
31 | |||
32 | /** |
||
33 | * Set the id property |
||
34 | * |
||
35 | * @param int $id |
||
36 | * @return $this |
||
37 | */ |
||
38 | public function setId($id) |
||
43 | |||
44 | /** |
||
45 | * Retrieve the domain property |
||
46 | * |
||
47 | * @return string|null |
||
48 | */ |
||
49 | 1 | public function getDomain() |
|
53 | |||
54 | /** |
||
55 | * Set the domain property |
||
56 | * |
||
57 | * @param string $domain |
||
58 | * @return $this |
||
59 | */ |
||
60 | public function setDomain($domain) |
||
65 | |||
66 | /** |
||
67 | * Retrieve the state property |
||
68 | * |
||
69 | * @return int|null |
||
70 | */ |
||
71 | 1 | public function getState() |
|
75 | |||
76 | /** |
||
77 | * Set the state property |
||
78 | * |
||
79 | * @param int $state |
||
80 | * @return $this |
||
81 | */ |
||
82 | public function setState($state) |
||
87 | |||
88 | /** |
||
89 | * Retrieve the stateReasons property |
||
90 | * |
||
91 | * @return array|null |
||
92 | */ |
||
93 | 1 | public function getStateReasons() |
|
97 | |||
98 | /** |
||
99 | * Set the stateReasons property |
||
100 | * |
||
101 | * @param array $stateReasons |
||
102 | * @return $this |
||
103 | */ |
||
104 | public function setStateReasons($stateReasons) |
||
109 | } |
||
110 |