shipping_rate.rb 138 B

1234567
  1. # frozen_string_literal: true
  2. module ShopifyAPI
  3. class ShippingRate < Base
  4. self.prefix = '/admin/checkouts/:checkout_id/'
  5. end
  6. end