| 1 | <?php |
||
| 22 | class SettlementGateway extends AbstractGateway |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @author WN, MS |
||
| 26 | * @param string $token |
||
| 27 | * @param Carbon|null $since |
||
| 28 | * @param Carbon|null $until |
||
| 29 | * @return array |
||
| 30 | */ |
||
| 31 | 2 | public function getSettlementReports($token, Carbon $since = null, Carbon $until = null) |
|
| 43 | |||
| 44 | /** |
||
| 45 | * @param string $token |
||
| 46 | * @param int $settlementId |
||
| 47 | * @return array |
||
| 48 | * @throws SdkException |
||
| 49 | */ |
||
| 50 | 2 | public function getSingleSettlementReport($token, $settlementId) |
|
| 54 | |||
| 55 | /** |
||
| 56 | * @author EA |
||
| 57 | * @param string $token |
||
| 58 | * @param int $settlementId |
||
| 59 | * @return array |
||
| 60 | * @throws SdkException |
||
| 61 | */ |
||
| 62 | public function getSingleAggregateSettlementReport($token, $settlementId) |
||
| 66 | } |
||
| 67 |