mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
Working on credit card auth response
This commit is contained in:
parent
662aa3aed1
commit
3ff6dd4472
@ -26,6 +26,17 @@ class StripePaymentDriver extends BasePaymentDriver
|
||||
|
||||
protected $customer_reference = 'customerReferenceParam';
|
||||
|
||||
/**
|
||||
* Payments
|
||||
* \Stripe\PaymentIntent::create([
|
||||
'payment_method_types' => ['card'],
|
||||
'amount' => 1099,
|
||||
'currency' => 'aud',
|
||||
'customer' => 'cus_Fow2nmVJX1EsQw',
|
||||
'payment_method' => 'card_1FJIAjKmol8YQE9DxWb9kMpR',
|
||||
]);
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Methods in this class are divided into
|
||||
|
Loading…
Reference in New Issue
Block a user