File tree 4 files changed +25
-2
lines changed
4 files changed +25
-2
lines changed Original file line number Diff line number Diff line change @@ -112,6 +112,11 @@ class CreditcardData extends ResultData {
112
112
*/
113
113
protected $ eci ;
114
114
115
+ /**
116
+ * @var string
117
+ */
118
+ protected $ schemeTransactionIdentifier ;
119
+
115
120
/**
116
121
* @return string
117
122
*/
@@ -423,6 +428,23 @@ public function setEci($eci)
423
428
return $ this ;
424
429
}
425
430
431
+ /**
432
+ * @return string
433
+ */
434
+ public function getSchemeTransactionIdentifier ()
435
+ {
436
+ return $ this ->schemeTransactionIdentifier ;
437
+ }
438
+
439
+ /**
440
+ * @param string $schemeTransactionIdentifier
441
+ * @return $this
442
+ */
443
+ public function setSchemeTransactionIdentifier ($ schemeTransactionIdentifier )
444
+ {
445
+ $ this ->schemeTransactionIdentifier = $ schemeTransactionIdentifier ;
446
+ return $ this ;
447
+ }
426
448
427
449
/**
428
450
* @return array
Original file line number Diff line number Diff line change @@ -326,6 +326,7 @@ protected function parseReturnData($returnData) {
326
326
$ creditcardData ->setBinCountry ($ this ->arrGet ($ returnData , 'binCountry ' ));
327
327
$ creditcardData ->setThreeDSecure ($ this ->arrGet ($ returnData , 'threeDSecure ' ));
328
328
$ creditcardData ->setEci ($ this ->arrGet ($ returnData , 'eci ' ));
329
+ $ creditcardData ->setSchemeTransactionIdentifier ($ this ->arrGet ($ returnData , 'schemeTransactionIdentifier ' ));
329
330
330
331
if ($ this ->arrGet ($ returnData , 'binDigits ' )){
331
332
$ binDigits = $ this ->arrGet ($ returnData , 'binDigits ' );
Original file line number Diff line number Diff line change @@ -307,7 +307,7 @@ public function setIncomingSettlementState($incomingSettlementState) {
307
307
$ this ->incomingSettlementState = $ incomingSettlementState ;
308
308
return $ this ;
309
309
}
310
-
310
+
311
311
/**
312
312
* set transaction errors
313
313
*
Original file line number Diff line number Diff line change @@ -622,4 +622,4 @@ public function setCustomer($customer)
622
622
$ this ->customer = $ customer ;
623
623
}
624
624
625
- }
625
+ }
You can’t perform that action at this time.
0 commit comments