| 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 | 2 | public function getCdrZip() |
|
| 31 | { |
||
| 32 | 2 | return $this->cdrZip; |
|
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @param string $cdrZip |
||
| 37 | * @return BillResult |
||
| 38 | */ |
||
| 39 | 18 | public function setCdrZip($cdrZip) |
|
| 44 | |||
| 45 | /** |
||
| 46 | * @return CdrResponse |
||
| 47 | */ |
||
| 48 | 14 | public function getCdrResponse() |
|
| 52 | |||
| 53 | /** |
||
| 54 | * @param CdrResponse $cdrResponse |
||
| 55 | * @return BillResult |
||
| 56 | */ |
||
| 57 | 20 | public function setCdrResponse($cdrResponse) |
|
| 62 | } |