| 1 | <?php |
||
| 10 | class ClaimCancel extends Service implements ClaimCancelInterface |
||
| 11 | { |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var SoapClient|null |
||
| 15 | */ |
||
| 16 | private $_client; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Category constructor |
||
| 20 | * endPoint set edildi. |
||
| 21 | * @throws N11Exception|\SoapFault |
||
| 22 | */ |
||
| 23 | public function __construct() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param array $data |
||
| 31 | * @return object |
||
| 32 | */ |
||
| 33 | public function list(array $data): object { |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param int $claimCancelId |
||
| 40 | * @param int $reasonId |
||
| 41 | * @param string $note |
||
| 42 | * @return object |
||
| 43 | */ |
||
| 44 | public function deny(int $claimCancelId, int $reasonId, string $note): object { |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @return object |
||
| 53 | */ |
||
| 54 | public function denyReasonTypes(): object { |
||
| 57 | |||
| 58 | /** |
||
| 59 | * @param int $claimCancelId |
||
| 60 | * @return object |
||
| 61 | */ |
||
| 62 | public function approve(int $claimCancelId): object { |
||
| 66 | |||
| 67 | } |
||
| 68 |