Class: Stripe::SetupAttemptService
- Inherits:
-
StripeService
- Object
- StripeService
- Stripe::SetupAttemptService
- Defined in:
- lib/stripe/services/setup_attempt_service.rb
Defined Under Namespace
Classes: ListParams
Instance Method Summary collapse
-
#list(params = {}, opts = {}) ⇒ Object
Returns a list of SetupAttempts that associate with a provided SetupIntent.
Methods inherited from StripeService
#initialize, #request, #request_stream
Constructor Details
This class inherits a constructor from Stripe::StripeService
Instance Method Details
#list(params = {}, opts = {}) ⇒ Object
Returns a list of SetupAttempts that associate with a provided SetupIntent.
66 67 68 69 70 71 72 73 74 |
# File 'lib/stripe/services/setup_attempt_service.rb', line 66 def list(params = {}, opts = {}) request( method: :get, path: "/v1/setup_attempts", params: params, opts: opts, base_address: :api ) end |