mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-06-05 00:01:07 -04:00
17 lines
295 B
Ruby
17 lines
295 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
module APIOperations
|
|
module List
|
|
def list(filters = {}, opts = {})
|
|
request_stripe_object(
|
|
method: :get,
|
|
path: resource_url,
|
|
params: filters,
|
|
opts: opts
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|