Sha256: 4f191f5c54ec9b631066790c9f4a290ef07ab0461aac1b6244ad62bbddc1733e
Contents?: true
Size: 838 Bytes
Versions: 2
Compression:
Stored size: 838 Bytes
Contents
# frozen_string_literal: true module LedgerSync module Adaptors module Test module Vendor module Operations class Update < Operation::Update class Contract < LedgerSync::Adaptors::Contract schema do required(:external_id).maybe(:string) required(:ledger_id).filled(:string) required(:display_name).maybe(:string) required(:first_name).maybe(:string) required(:last_name).maybe(:string) optional(:email).maybe(:string) optional(:company_name).maybe(:string) optional(:phone_number).maybe(:string) optional(:subsidiary).maybe(:hash, Types::Reference) end end end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ledger_sync-1.3.2 | lib/ledger_sync/adaptors/test/vendor/operations/update.rb |
ledger_sync-1.3.1 | lib/ledger_sync/adaptors/test/vendor/operations/update.rb |