Total Complexity | 3 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class UpdateHeldTransactionRequest extends BaseApiRequest |
||
13 | { |
||
14 | const APPROVE = 'approve'; |
||
15 | const DECLINE = 'decline'; |
||
16 | |||
17 | protected $action; |
||
18 | protected $refTransId; |
||
19 | |||
20 | public function setAction($action) |
||
23 | } |
||
24 | |||
25 | public function setRefTransId($refTransId) |
||
26 | { |
||
27 | $this->refTransId = $refTransId; |
||
28 | } |
||
29 | |||
30 | protected function attachData(RequestInterface $request) |
||
35 | ]); |
||
36 | } |
||
38 |