Sha256: eede10e85a533535e8d5347b9cda001038243483ca2cb007f4f2dbef0607effe
Contents?: true
Size: 804 Bytes
Versions: 1
Compression:
Stored size: 804 Bytes
Contents
# frozen_string_literal: true module LedgerSync module Ledgers module QuickBooksOnline class Transfer module Operations class Find < Operation::Find class Contract < LedgerSync::Ledgers::Contract schema do required(:external_id).maybe(:string) required(:ledger_id).filled(:string) required(:from_account).hash(Types::Reference) required(:to_account).hash(Types::Reference) required(:amount).maybe(:integer) required(:currency).maybe(:hash, Types::Reference) required(:memo).maybe(:string) required(:transaction_date).maybe(:date?) end end end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ledger_sync-1.4.4 | lib/ledger_sync/ledgers/quickbooks_online/transfer/operations/find.rb |