Class: Stripe::Billing::CreditBalanceSummaryService
- Inherits:
-
StripeService
- Object
- StripeService
- Stripe::Billing::CreditBalanceSummaryService
- Defined in:
- lib/stripe/services/billing/credit_balance_summary_service.rb
Instance Method Summary collapse
-
#retrieve(params = {}, opts = {}) ⇒ Object
Retrieves the credit balance summary for a customer.
Methods inherited from StripeService
#initialize, #request, #request_stream
Constructor Details
This class inherits a constructor from Stripe::StripeService
Instance Method Details
#retrieve(params = {}, opts = {}) ⇒ Object
Retrieves the credit balance summary for a customer
8 9 10 11 12 13 14 15 16 |
# File 'lib/stripe/services/billing/credit_balance_summary_service.rb', line 8 def retrieve(params = {}, opts = {}) request( method: :get, path: "/v1/billing/credit_balance_summary", params: params, opts: opts, base_address: :api ) end |