Sha256: 2236bc6095685a8febe7a9525123eb3c4cea658997bb965ba35138e1dbe83b97
Contents?: true
Size: 503 Bytes
Versions: 8
Compression:
Stored size: 503 Bytes
Contents
# frozen_string_literal: true require 'fortnox/api/types/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
8 entries across 8 versions & 1 rubygems