Class: Stripe::Crypto::CustomerPaymentTokenService
- Inherits:
-
StripeService
- Object
- StripeService
- Stripe::Crypto::CustomerPaymentTokenService
- Defined in:
- lib/stripe/services/crypto/customer_payment_token_service.rb
Instance Method Summary collapse
-
#list(id, params = {}, opts = {}) ⇒ Object
Lists the Payment Tokens for a Crypto Customer.
Methods inherited from StripeService
#initialize, #request, #request_stream
Constructor Details
This class inherits a constructor from Stripe::StripeService
Instance Method Details
#list(id, params = {}, opts = {}) ⇒ Object
Lists the Payment Tokens for a Crypto Customer.
8 9 10 11 12 13 14 15 16 |
# File 'lib/stripe/services/crypto/customer_payment_token_service.rb', line 8 def list(id, params = {}, opts = {}) request( method: :get, path: format("/v1/crypto/customers/%<id>s/payment_tokens", { id: CGI.escape(id) }), params: params, opts: opts, base_address: :api ) end |