payment.rb 133 B

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