Sha256: 218bde18c933223f11a659e40abfbdc6f3975b9a2c03c3cc0e4b1173e39c3d8b
Contents?: true
Size: 527 Bytes
Versions: 6
Compression:
Stored size: 527 Bytes
Contents
require "fortnox/api/types/document_row" module Fortnox module API module Types class InvoiceRow < Fortnox::API::Types::Model STUB = {}.freeze DocumentRow.ify self #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
6 entries across 6 versions & 1 rubygems