Method: Stripe::ShippingRateService#list
- Defined in:
- lib/stripe/services/shipping_rate_service.rb
#list(params = {}, opts = {}) ⇒ Object
Returns a list of your shipping rates.
18 19 20 21 22 23 24 25 26 |
# File 'lib/stripe/services/shipping_rate_service.rb', line 18 def list(params = {}, opts = {}) request( method: :get, path: "/v1/shipping_rates", params: params, opts: opts, base_address: :api ) end |