Sha256: 9f524e19454ad09e0d452454b5cac49d8e74b78cebe2824dc8fe94bdce27859e
Contents?: true
Size: 672 Bytes
Versions: 1
Compression:
Stored size: 672 Bytes
Contents
module LedgerSync module Adaptors module Test module Vendor module Operations class Valid < Operation::Create class Contract < LedgerSync::Adaptors::Contract schema do optional(:ledger_id).maybe(:string) optional(:display_name).maybe(:string) optional(:first_name).maybe(:string) optional(:last_name).maybe(:string) optional(:email).maybe(:string) end end private def operate success(response: :foo) end end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ledger_sync-1.1.1 | lib/ledger_sync/adaptors/test/vendor/operations/valid.rb |