Sha256: 9961f53591954ba537f77316d426cb338fa243c31810ecb0a284256e0d2ecac1

Contents?: true

Size: 469 Bytes

Versions: 8

Compression:

Stored size: 469 Bytes

Contents

# frozen_string_literal: true

require_relative '../operation'

module LedgerSync
  module Ledgers
    module QuickBooksOnline
      class Operation
        class Find
          include QuickBooksOnline::Operation::Mixin

          private

          def operate
            response_to_operation_result(
              response: client.find(
                path: ledger_resource_path
              )
            )
          end
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ledger_sync-1.6.0 lib/ledger_sync/ledgers/quickbooks_online/operation/find.rb
ledger_sync-1.5.2 lib/ledger_sync/ledgers/quickbooks_online/operation/find.rb
ledger_sync-1.5.1 lib/ledger_sync/ledgers/quickbooks_online/operation/find.rb
ledger_sync-1.5.0 lib/ledger_sync/ledgers/quickbooks_online/operation/find.rb
ledger_sync-1.4.4 lib/ledger_sync/ledgers/quickbooks_online/operation/find.rb
ledger_sync-1.4.2 lib/ledger_sync/ledgers/quickbooks_online/operation/find.rb
ledger_sync-1.4.1 lib/ledger_sync/ledgers/quickbooks_online/operation/find.rb
ledger_sync-1.4.0 lib/ledger_sync/ledgers/quickbooks_online/operation/find.rb