1 | <?php |
||
15 | class BillResult extends BaseResult |
||
16 | { |
||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $cdrZip; |
||
21 | |||
22 | /** |
||
23 | * @var CdrResponse |
||
24 | */ |
||
25 | protected $cdrResponse; |
||
26 | |||
27 | /** |
||
28 | * @return string |
||
29 | */ |
||
30 | public function getCdrZip() |
||
34 | |||
35 | /** |
||
36 | * @param string $cdrZip |
||
37 | * @return BillResult |
||
38 | */ |
||
39 | 2 | public function setCdrZip($cdrZip) |
|
44 | |||
45 | /** |
||
46 | * @return CdrResponse |
||
47 | */ |
||
48 | 2 | public function getCdrResponse() |
|
52 | |||
53 | /** |
||
54 | * @param CdrResponse $cdrResponse |
||
55 | * @return BillResult |
||
56 | */ |
||
57 | 2 | public function setCdrResponse($cdrResponse) |
|
62 | } |