Sha256: 962d67778f53106c992a21660aaa53e39b5bed7ec5c367e954be0c3abe342d30
Contents?: true
Size: 737 Bytes
Versions: 11
Compression:
Stored size: 737 Bytes
Contents
# frozen_string_literal: true module LedgerSync 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) optional(:FromAccount).hash(Types::Reference) optional(:ToAccount).hash(Types::Reference) optional(:Amount).maybe(:integer) optional(:Currency).maybe(:hash, Types::Reference) optional(:PrivateNote).maybe(:string) optional(:TxnDate).maybe(:date?) end end end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems