Sha256: 0cff00b01d263208240b56b8a62c859e8ea2e5f905bd5d97a6b601087fccf471

Contents?: true

Size: 391 Bytes

Versions: 1

Compression:

Stored size: 391 Bytes

Contents

module Falsify
  # Details a tax applied to a LineItem.
  class TaxLine
    # The name of the tax.
    # @return [String]
    attr_accessor :title
    # The amount added to the order for this tax in the shop currency.
    # @return [String]
    attr_accessor :price
    # The tax rate applied to the order to calculate the tax price.
    # @return [String]
    attr_accessor :rate
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
falsify-0.1.0 lib/falsify/models/order/tax_line.rb