Skip to content

Commit

Permalink
add storedCredentials to verify call
Browse files Browse the repository at this point in the history
  • Loading branch information
cb-vova committed Oct 10, 2019
1 parent 7c65d65 commit b8aac75
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion source/Paysafe/CardPaymentService.php
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,8 @@ public function verify(CardPayments\Verification $verify)
'customerIp',
'dupCheck',
'description',
'billingDetails'
'billingDetails',
'storedCredential',
));

$request = new Request(array(
Expand Down
3 changes: 2 additions & 1 deletion source/Paysafe/CardPayments/Verification.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ public static function getPageableArrayKey()
'riskReasonCode' => 'array:int',
'acquirerResponse' => '\Paysafe\CardPayments\AcquirerResponse',
'error' => '\Paysafe\Error',
'links' => 'array:\Paysafe\Link'
'links' => 'array:\Paysafe\Link',
'storedCredential' => '\Paysafe\CardPayments\StoredCredential',
);

}

0 comments on commit b8aac75

Please sign in to comment.