From ffd28d1a2925a299f983f27c75b1aec9a4210a36 Mon Sep 17 00:00:00 2001 From: apoca Date: Wed, 17 Apr 2019 15:57:58 +0100 Subject: [PATCH] closed: Added new field optionalParameters. --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0dbe03f..4deaf32 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,8 @@ $request = [ 'brand' => 'CHECKOUT', 'amount' => 100, 'currency' => 'EUR', - 'type' => 'DB' + 'type' => 'DB', + 'optionalParameters' => [], ]; $response = Sibs::checkout($request)->pay(); @@ -150,6 +151,7 @@ $request = [ 'expiry_month' => 05, 'expiry_year' => 2020, 'cvv' => 123, + 'optionalParameters' => [], ]; $response = Sibs::checkout($request)->pay(); ``` @@ -164,6 +166,7 @@ $request = [ 'brand' => 'MBWAY', 'type' => 'PA', 'accountId' => '351#911222111', + 'optionalParameters' => [], ]; $response = Sibs::checkout($request)->pay(); ```