Sha256: be1cc45d88423515ef89e18165f2b880ffef9bd83be85d91dc23c04456cd40fb

Contents?: true

Size: 474 Bytes

Versions: 4

Compression:

Stored size: 474 Bytes

Contents

module GunBroker
  class Order
    module Constants

      # The carrier responsible for shipping.
      # The keys of this hash should be sent as the `carrier` param when updating shipping on an Order.
      SHIPPING_CARRIERS = {
        1 => 'FedEx',
        2 => 'UPS',
        3 => 'USPS',
      }

      # The flags that are allowed to be toggled (true/false) on an Order.
      ACCEPTED_FLAG_KEYS = %i( payment_received ffl_received order_shipped )

    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
gun_broker-1.4.8 lib/gun_broker/order/constants.rb
gun_broker-1.4.7 lib/gun_broker/order/constants.rb
gun_broker-1.4.6 lib/gun_broker/order/constants.rb
gun_broker-1.4.5 lib/gun_broker/order/constants.rb