Sha256: 05e974289de8eb611c93984b808a443ec02400cc969792b411938e241a43b014

Contents?: true

Size: 351 Bytes

Versions: 4

Compression:

Stored size: 351 Bytes

Contents

# frozen_string_literal: true

require_relative 'bill'

module LedgerSync
  module Ledgers
    module QuickBooksOnline
      class BillPaymentLine < QuickBooksOnline::Resource
        attribute :Amount, type: Type::Integer

        references_many :LinkedTxn, to: [Bill]

        def name
          self.Amount
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ledger_sync-1.6.0 lib/ledger_sync/ledgers/quickbooks_online/resources/bill_payment_line.rb
ledger_sync-1.5.2 lib/ledger_sync/ledgers/quickbooks_online/resources/bill_payment_line.rb
ledger_sync-1.5.1 lib/ledger_sync/ledgers/quickbooks_online/resources/bill_payment_line.rb
ledger_sync-1.5.0 lib/ledger_sync/ledgers/quickbooks_online/resources/bill_payment_line.rb