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