westernmilling/agris.rb

View on GitHub
lib/agris/api/inventory/specific_order_extract.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
module Agris
  module Api
    module Inventory
      class SpecificOrderExtract
        include ::Agris::XmlModel

        attr_accessor :order_location, :order_number, :order_type

        def initialize(order_location, order_number, order_type)
          @order_location = order_location
          @order_number = order_number
          @order_type = order_type
        end
      end
    end
  end
end