Class: Stripe::TestHelpers::CustomerService
- Inherits:
-
StripeService
- Object
- StripeService
- Stripe::TestHelpers::CustomerService
- Defined in:
- lib/stripe/services/test_helpers/customer_service.rb
Instance Method Summary collapse
-
#fund_cash_balance(customer, params = {}, opts = {}) ⇒ Object
Create an incoming testmode bank transfer.
Methods inherited from StripeService
#initialize, #request, #request_stream
Constructor Details
This class inherits a constructor from Stripe::StripeService
Instance Method Details
#fund_cash_balance(customer, params = {}, opts = {}) ⇒ Object
Create an incoming testmode bank transfer
8 9 10 11 12 13 14 15 16 |
# File 'lib/stripe/services/test_helpers/customer_service.rb', line 8 def fund_cash_balance(customer, params = {}, opts = {}) request( method: :post, path: format("/v1/test_helpers/customers/%<customer>s/fund_cash_balance", { customer: CGI.escape(customer) }), params: params, opts: opts, base_address: :api ) end |