Sha256: 356ccf7b9ba358aba131d6311230573eb3c57d70923e1dc64c0cfc150e86fe2c

Contents?: true

Size: 1.12 KB

Versions: 13

Compression:

Stored size: 1.12 KB

Contents

# frozen_string_literal: true

module LedgerSync
  module QuickBooksOnline
    class BillPayment
      module Operations
        class Update < Operation::FullUpdate
          class Contract < LedgerSync::Ledgers::Contract
            schema do
              required(:external_id).maybe(:string)
              optional(:APAccount).hash(Types::Reference)
              required(:TotalAmt).filled(:integer)
              optional(:CheckPayment).maybe(Types::Reference)
              optional(:CreditCardPayment).maybe(Types::Reference)
              required(:Currency).filled(:hash, Types::Reference)
              required(:Department).hash(Types::Reference)
              optional(:ExchangeRate).maybe(:float)
              required(:ledger_id).filled(:string)
              required(:Line).array(Types::Reference)
              optional(:PrivateNote).filled(:string)
              required(:PayType).filled(:string)
              optional(:DocNumber).maybe(:string)
              optional(:TxnDate).filled(:date?)
              required(:Vendor).hash(Types::Reference)
            end
          end
        end
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
ledger_sync-quickbooks_online-2.0.0 lib/ledger_sync/quickbooks_online/bill_payment/operations/update.rb
ledger_sync-quickbooks_online-1.0.1 lib/ledger_sync/quickbooks_online/bill_payment/operations/update.rb
ledger_sync-quickbooks_online-1.0.0 lib/ledger_sync/quickbooks_online/bill_payment/operations/update.rb
ledger_sync-quickbooks_online-0.4.0 lib/ledger_sync/quickbooks_online/bill_payment/operations/update.rb
ledger_sync-quickbooks_online-0.3.1 lib/ledger_sync/quickbooks_online/bill_payment/operations/update.rb
ledger_sync-quickbooks_online-0.3.0 lib/ledger_sync/quickbooks_online/bill_payment/operations/update.rb
ledger_sync-quickbooks_online-0.2.6 lib/ledger_sync/quickbooks_online/bill_payment/operations/update.rb
ledger_sync-quickbooks_online-0.2.5 lib/ledger_sync/quickbooks_online/bill_payment/operations/update.rb
ledger_sync-quickbooks_online-0.2.4 lib/ledger_sync/quickbooks_online/bill_payment/operations/update.rb
ledger_sync-quickbooks_online-0.2.2 lib/ledger_sync/quickbooks_online/bill_payment/operations/update.rb
ledger_sync-quickbooks_online-0.2.1 lib/ledger_sync/quickbooks_online/bill_payment/operations/update.rb
ledger_sync-quickbooks_online-0.2.0 lib/ledger_sync/quickbooks_online/bill_payment/operations/update.rb
ledger_sync-quickbooks_online-0.1.1 lib/ledger_sync/quickbooks_online/bill_payment/operations/update.rb