Sha256: 3522fa9dc032aab84dacf633d7c708e6dd7938610bf0b4c48d20726fbc7c73ac
Contents?: true
Size: 860 Bytes
Versions: 4
Compression:
Stored size: 860 Bytes
Contents
# frozen_string_literal: true module LedgerSync module Ledgers module QuickBooksOnline class Invoice module Operations class Find < Operation::Find class Contract < LedgerSync::Ledgers::Contract schema do required(:external_id).maybe(:string) optional(:Currency).maybe(:hash, Types::Reference) optional(:Customer).hash(Types::Reference) optional(:Deposit).maybe(:integer) optional(:DepositToAccount).hash(Types::Reference) required(:ledger_id).filled(:string) optional(:Line).array(Types::Reference) optional(:PrivateNote).maybe(:string) optional(:TxnDate).maybe(:date?) end end end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems