Sha256: 4c0a5acdc1eead4559df3961e5ffadf03e2b01566501b5e01a7e9ecb92bcb934

Contents?: true

Size: 610 Bytes

Versions: 13

Compression:

Stored size: 610 Bytes

Contents

require_relative 'base'
module Shippo
  module API
    module Category
      # +Status+ is a category class with the following possible values:
      #
      # * "Waiting" shipments have been successfully submitted but not yet been processed.
      # * "Queued" shipments are currently being processed.
      # * "Success" shipments have been processed successfully,
      #    meaning that rate generation has concluded.
      # * "Error" does not occur currently and is reserved for future use.
      class Status < Base
        allowed_values :waiting, :queued, :success, :error
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
shippo-4.0.0 lib/shippo/api/category/status.rb
shippo-3.1.0 lib/shippo/api/category/status.rb
shippo-3.0.1 lib/shippo/api/category/status.rb
shippo-3.0.0 lib/shippo/api/category/status.rb
shippo-2.0.8 lib/shippo/api/category/status.rb
shippo-2.0.7 lib/shippo/api/category/status.rb
shippo-2.0.6 lib/shippo/api/category/status.rb
shippo-2.0.5 lib/shippo/api/category/status.rb
shippo-2.0.4 lib/shippo/api/category/status.rb
shippo-2.0.3 lib/shippo/api/category/status.rb
shippo-2.0.2 lib/shippo/api/category/status.rb
shippo-2.0.1 lib/shippo/api/category/status.rb
shippo-2.0.0 lib/shippo/api/category/status.rb