Sha256: ab49011e71e0c0d4ffbbdd6f887263bec5c3eebe45497a359f92f7303c8ddc5f
Contents?: true
Size: 1001 Bytes
Versions: 2
Compression:
Stored size: 1001 Bytes
Contents
module LedgerSync module Adaptors module Test module Customer module Operations class Find < Operation::Find class Contract < LedgerSync::Adaptors::Contract params do required(:external_id).maybe(:string) required(:ledger_id).filled(:string) optional(:email).maybe(:string) optional(:name).maybe(:string) optional(:phone_number).maybe(:string) end end private def operate return failure(nil) if resource.ledger_id.nil? response = adaptor.find( resource: 'customer', id: resource.ledger_id ) success( resource: Test::LedgerSerializer.new(resource: resource).deserialize(hash: response), response: response ) end end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ledger_sync-1.1.3 | lib/ledger_sync/adaptors/test/customer/operations/find.rb |
ledger_sync-1.1.2 | lib/ledger_sync/adaptors/test/customer/operations/find.rb |