| 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 | * Retrieve the domain property |
||
| 34 | * |
||
| 35 | * @return string|null |
||
| 36 | */ |
||
| 37 | 1 | public function getDomain() |
|
| 41 | |||
| 42 | /** |
||
| 43 | * Retrieve the state property |
||
| 44 | * |
||
| 45 | * @return int|null |
||
| 46 | */ |
||
| 47 | 1 | public function getState() |
|
| 51 | |||
| 52 | /** |
||
| 53 | * Retrieve the stateReasons property |
||
| 54 | * |
||
| 55 | * @return array|null |
||
| 56 | */ |
||
| 57 | 1 | public function getStateReasons() |
|
| 61 | } |
||
| 62 |