Sha256: 755b40fe248ff4e3f57c7423e3c1b045af7fcd0484a80e3e0f41e9dc1fbd6878

Contents?: true

Size: 374 Bytes

Versions: 3

Compression:

Stored size: 374 Bytes

Contents

# frozen_string_literal: true

require 'mws/orders/entity'

module MWS
  module Orders
    # https://docs.developer.amazonservices.com/en_US/orders-2013-09-01/Orders_Datatypes.html#TaxClassification
    class TaxClassification < Entity
      attribute :name do
        string('Name')
      end

      attribute(:value) do
        string('Value')
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mws-orders-0.6.1 lib/mws/orders/tax_classification.rb
mws-orders-0.5.1 lib/mws/orders/tax_classification.rb
mws-orders-0.5.0 lib/mws/orders/tax_classification.rb