1 | <?php |
||
11 | class CallTracking implements ModelInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var int |
||
15 | */ |
||
16 | private $id; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $name; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | private $phoneDid; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | private $phoneDestination; |
||
32 | |||
33 | /** |
||
34 | * @var bool |
||
35 | */ |
||
36 | private $callerId; |
||
37 | |||
38 | /** |
||
39 | * CallTracking constructor. |
||
40 | * |
||
41 | * @param array $data |
||
42 | */ |
||
43 | public function __construct(array $data) |
||
51 | |||
52 | /** |
||
53 | * @return int |
||
54 | */ |
||
55 | public function getId(): int |
||
59 | |||
60 | /** |
||
61 | * @return string |
||
62 | */ |
||
63 | public function getName(): string |
||
67 | |||
68 | /** |
||
69 | * @return string |
||
70 | */ |
||
71 | public function getPhoneDid(): string |
||
75 | |||
76 | /** |
||
77 | * @return string |
||
78 | */ |
||
79 | public function getPhoneDestination(): string |
||
83 | |||
84 | /** |
||
85 | * @return boolean |
||
86 | */ |
||
87 | public function hasCallerId(): bool |
||
91 | } |
||
92 |