Sha256: 8679fc100f5548f7cc5b90cd2ed4f3e210f1d5ce0cfbd91c54f5cbe301aba053

Contents?: true

Size: 472 Bytes

Versions: 2

Compression:

Stored size: 472 Bytes

Contents

# frozen_string_literal: true

require_relative '../operation'

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

          private

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ledger_sync-1.3.5 lib/ledger_sync/adaptors/quickbooks_online/operation/find.rb
ledger_sync-1.3.4 lib/ledger_sync/adaptors/quickbooks_online/operation/find.rb