Sha256: bcbeb1a75fb30323447c6b8ff462626e9ddd77a357ddfb389f130d2b246cbc25

Contents?: true

Size: 972 Bytes

Versions: 13

Compression:

Stored size: 972 Bytes

Contents

# frozen_string_literal: true

module LedgerSync
  module QuickBooksOnline
    class Payment
      module Operations
        class Update < Operation::FullUpdate
          class Contract < LedgerSync::Ledgers::Contract
            schema do
              required(:external_id).maybe(:string)
              optional(:ARAccount).hash(Types::Reference)
              required(:Currency).filled(:hash, Types::Reference)
              required(:Customer).hash(Types::Reference)
              optional(:DepositToAccount).hash(Types::Reference)
              optional(:ExchangeRate).maybe(:float)
              required(:ledger_id).filled(:string)
              required(:Line).array(Types::Reference)
              optional(:PrivateNote).filled(:string)
              optional(:PaymentRefNum).maybe(:string)
              required(:TotalAmt).filled(:integer)
              optional(:TxnDate).filled(:date?)
            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/payment/operations/update.rb
ledger_sync-quickbooks_online-1.0.1 lib/ledger_sync/quickbooks_online/payment/operations/update.rb
ledger_sync-quickbooks_online-1.0.0 lib/ledger_sync/quickbooks_online/payment/operations/update.rb
ledger_sync-quickbooks_online-0.4.0 lib/ledger_sync/quickbooks_online/payment/operations/update.rb
ledger_sync-quickbooks_online-0.3.1 lib/ledger_sync/quickbooks_online/payment/operations/update.rb
ledger_sync-quickbooks_online-0.3.0 lib/ledger_sync/quickbooks_online/payment/operations/update.rb
ledger_sync-quickbooks_online-0.2.6 lib/ledger_sync/quickbooks_online/payment/operations/update.rb
ledger_sync-quickbooks_online-0.2.5 lib/ledger_sync/quickbooks_online/payment/operations/update.rb
ledger_sync-quickbooks_online-0.2.4 lib/ledger_sync/quickbooks_online/payment/operations/update.rb
ledger_sync-quickbooks_online-0.2.2 lib/ledger_sync/quickbooks_online/payment/operations/update.rb
ledger_sync-quickbooks_online-0.2.1 lib/ledger_sync/quickbooks_online/payment/operations/update.rb
ledger_sync-quickbooks_online-0.2.0 lib/ledger_sync/quickbooks_online/payment/operations/update.rb
ledger_sync-quickbooks_online-0.1.1 lib/ledger_sync/quickbooks_online/payment/operations/update.rb