Sha256: 9cd2320c021ae7bd69de09afeefbea7548a9038bab449ca48d8cc6dc9ca33109

Contents?: true

Size: 439 Bytes

Versions: 13

Compression:

Stored size: 439 Bytes

Contents

require_relative 'base'
module Shippo
  module API
    module Category
      # "VALID" shipments contain all required values and can be used to get rates and purchase labels.
      # "INCOMPLETE" shipments lack required values but can be used for getting rates.
      # "INVALID" shipments can't be used for getting rates or labels.
      class State < Base
        allowed_values :valid, :invalid, :incomplete
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

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