Class: Stripe::Billing::CreditBalanceSummaryService
- Inherits:
-
StripeService
- Object
- StripeService
- Stripe::Billing::CreditBalanceSummaryService
- Defined in:
- lib/stripe/services/billing/credit_balance_summary_service.rb
Defined Under Namespace
Classes: RetrieveParams
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.
56 57 58 59 60 61 62 63 64 |
# File 'lib/stripe/services/billing/credit_balance_summary_service.rb', line 56 def retrieve(params = {}, opts = {}) request( method: :get, path: "/v1/billing/credit_balance_summary", params: params, opts: opts, base_address: :api ) end |