fulfillment_v2.rb 586 B

123456789101112131415161718192021
  1. # frozen_string_literal: true
  2. module ShopifyAPI
  3. class FulfillmentV2 < Base
  4. self.element_name = 'fulfillment'
  5. def initialize(attributes = {}, persisted = false)
  6. ShopifyAPI::Base.version_validation!(FulfillmentOrder::MINIMUM_VERSION)
  7. super(attributes, persisted)
  8. end
  9. def update_tracking(tracking_info:, notify_customer:)
  10. body = {
  11. fulfillment: {
  12. tracking_info: tracking_info,
  13. notify_customer: notify_customer
  14. }
  15. }
  16. load_attributes_from_response(post(:update_tracking, {}, body.to_json))
  17. end
  18. end
  19. end