Sha256: 27c93399bf5d6aa1e17b714e6d3e6d3083f41ffc7ce66b817aaa39f67bc38cd4

Contents?: true

Size: 494 Bytes

Versions: 3

Compression:

Stored size: 494 Bytes

Contents

# frozen_string_literal: true

require_relative 'document_row'

module Fortnox
  module API
    module Types
      class InvoiceRow < DocumentRow
        STUB = {}.freeze

        # PriceExcludingVAT Price per unit excluding VAT.
        attribute :price_excluding_vat, Types::Nullable::Float.with(private: true)

        # TotalExcludingVAT  Total amount for the row excluding VAT.
        attribute :total_excluding_vat, Types::Nullable::Float.with(private: true)
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fortnox-api-0.8.2 lib/fortnox/api/types/invoice_row.rb
fortnox-api-0.8.1 lib/fortnox/api/types/invoice_row.rb
fortnox-api-0.9.0 lib/fortnox/api/types/invoice_row.rb