Skip to content

Commit

Permalink
closed: Added new field optionalParameters.
Browse files Browse the repository at this point in the history
  • Loading branch information
apoca committed Apr 17, 2019
1 parent 4964ca6 commit ffd28d1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ $request = [
'brand' => 'CHECKOUT',
'amount' => 100,
'currency' => 'EUR',
'type' => 'DB'
'type' => 'DB',
'optionalParameters' => [],
];

$response = Sibs::checkout($request)->pay();
Expand Down Expand Up @@ -150,6 +151,7 @@ $request = [
'expiry_month' => 05,
'expiry_year' => 2020,
'cvv' => 123,
'optionalParameters' => [],
];
$response = Sibs::checkout($request)->pay();
```
Expand All @@ -164,6 +166,7 @@ $request = [
'brand' => 'MBWAY',
'type' => 'PA',
'accountId' => '351#911222111',
'optionalParameters' => [],
];
$response = Sibs::checkout($request)->pay();
```
Expand Down

0 comments on commit ffd28d1

Please sign in to comment.